summaryrefslogtreecommitdiff
path: root/docs/reference.rst
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2013-03-11 22:28:43 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2013-03-11 22:28:43 +0100
commitde3a552eab032cb980a2fb78976fc3dc8cd5f1c8 (patch)
tree1eb5e3cbc27f5abd9c9d4b1729c152a1db97c3ee /docs/reference.rst
parente2ac08066fbc6b6412b713b42aba792c224067f5 (diff)
downloadfactory-boy-de3a552eab032cb980a2fb78976fc3dc8cd5f1c8.tar
factory-boy-de3a552eab032cb980a2fb78976fc3dc8cd5f1c8.tar.gz
Remove InfiniteIterator and infinite_iterator.
Use Iterator/iterator instead.
Diffstat (limited to 'docs/reference.rst')
-rw-r--r--docs/reference.rst26
1 files changed, 0 insertions, 26 deletions
diff --git a/docs/reference.rst b/docs/reference.rst
index 2b5ba11..27e2e14 100644
--- a/docs/reference.rst
+++ b/docs/reference.rst
@@ -830,32 +830,6 @@ use the :func:`iterator` decorator:
yield line
-InfiniteIterator
-~~~~~~~~~~~~~~~~
-
-.. class:: InfiniteIterator(iterable)
-
- Equivalent to ``factory.Iterator(iterable)``.
-
-.. deprecated:: 1.3.0
- Merged into :class:`Iterator`; will be removed in v2.0.0.
-
- Replace ``factory.InfiniteIterator(iterable)``
- with ``factory.Iterator(iterable)``.
-
-
-.. function:: infinite_iterator(function)
-
- Equivalent to ``factory.iterator(func)``.
-
-
-.. deprecated:: 1.3.0
- Merged into :func:`iterator`; will be removed in v2.0.0.
-
- Replace ``@factory.infinite_iterator`` with ``@factory.iterator``.
-
-
-
Post-generation hooks
"""""""""""""""""""""