diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-03-11 22:30:45 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-03-11 22:30:45 +0100 |
commit | 16e1a65f5b93615d946b74e3fb4d0b61c99ae0d2 (patch) | |
tree | e5ca942c8ec37401e96f1fca9a1edde94ec5e1c0 /docs/reference.rst | |
parent | de3a552eab032cb980a2fb78976fc3dc8cd5f1c8 (diff) | |
download | factory-boy-16e1a65f5b93615d946b74e3fb4d0b61c99ae0d2.tar factory-boy-16e1a65f5b93615d946b74e3fb4d0b61c99ae0d2.tar.gz |
Remove CircularSubFactory.
Replace CircularSubFactory('module', 'symbol') with SubFactory('module.symbol').
Diffstat (limited to 'docs/reference.rst')
-rw-r--r-- | docs/reference.rst | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/reference.rst b/docs/reference.rst index 27e2e14..955d3c5 100644 --- a/docs/reference.rst +++ b/docs/reference.rst @@ -657,19 +657,6 @@ Obviously, such circular relationships require careful handling of loops: <john (group: MyGroup)> -.. class:: CircularSubFactory(module_name, symbol_name, **kwargs) - - .. OHAI_VIM** - - Lazily imports ``module_name.symbol_name`` at the first call. - -.. deprecated:: 1.3.0 - Merged into :class:`SubFactory`; will be removed in 2.0.0. - - Replace ``factory.CircularSubFactory('some.module', 'Symbol', **kwargs)`` - with ``factory.SubFactory('some.module.Symbol', **kwargs)`` - - SelfAttribute """"""""""""" |