summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-08-17 08:50:34 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:09 -0400
commitc64dd646f5b6955ca09e0509a6e2ffabfa97d935 (patch)
treed1fa6cedb0d3470b139b28a338d64b3794182ec9 /docs/ref
parent08ab262649fc483df71d860d217a864ecbbcc69d (diff)
Refs #12663 -- Removed deprecated Model._meta methods.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/meta.txt12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/ref/models/meta.txt b/docs/ref/models/meta.txt
index d8f711b810..d1ae35ff3e 100644
--- a/docs/ref/models/meta.txt
+++ b/docs/ref/models/meta.txt
@@ -70,18 +70,6 @@ Retrieving a single field instance of a model by name
...
FieldDoesNotExist: User has no field named 'does_not_exist'
- .. deprecated:: 1.8
-
- :meth:`Options.get_field()` previously accepted a ``many_to_many``
- parameter which could be set to ``False`` to avoid searching
- ``ManyToManyField``\s. The old behavior has been preserved for
- backwards compatibility; however, the parameter and this behavior
- has been deprecated.
-
- If you wish to filter out ``ManyToManyField``\s, you can inspect the
- :attr:`Field.many_to_many <django.db.models.Field.many_to_many>`
- attribute after calling ``get_field()``.
-
Retrieving all field instances of a model
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~