summaryrefslogtreecommitdiff
path: root/docs
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
parente2ac08066fbc6b6412b713b42aba792c224067f5 (diff)
downloadfactory-boy-de3a552eab032cb980a2fb78976fc3dc8cd5f1c8.tar
factory-boy-de3a552eab032cb980a2fb78976fc3dc8cd5f1c8.tar.gz
Remove InfiniteIterator and infinite_iterator.
Use Iterator/iterator instead.
Diffstat (limited to 'docs')
-rw-r--r--docs/changelog.rst1
-rw-r--r--docs/reference.rst26
2 files changed, 1 insertions, 26 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 1a82ecd..88107a4 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -15,6 +15,7 @@ ChangeLog
*Removed:*
- Remove associated class discovery
+ - Remove :class:`~factory.InfiniteIterator` and :func:`~factory.infinite_iterator`
- Stop defaulting to Django's ``Foo.objects.create()`` when "creating" instances
- Remove STRATEGY_*
- Remove :meth:`~factory.Factory.set_building_function` / :meth:`~factory.Factory.set_creation_function`
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
"""""""""""""""""""""