[1.7.x] Update docs to be more clear about nested classes (refs #23418)

This commit is contained in:
Andrew Godwin 2014-09-05 14:58:44 -07:00
parent 5e2f336f69
commit e5cdfb1510
1 changed files with 3 additions and 2 deletions

View File

@ -536,8 +536,8 @@ Django can serialize the following:
- ``datetime.date``, ``datetime.time``, and ``datetime.datetime`` instances
- ``decimal.Decimal`` instances
- Any Django field
- Any function or method reference (e.g. ``datetime.datetime.today``)
- Any class reference
- Any function or method reference (e.g. ``datetime.datetime.today``) (must be in module's top-level scope)
- Any class reference (must be in module's top-level scope)
- Anything with a custom ``deconstruct()`` method (:ref:`see below <custom-deconstruct-method>`)
Django can serialize the following on Python 3 only:
@ -546,6 +546,7 @@ Django can serialize the following on Python 3 only:
Django cannot serialize:
- Nested classes
- Arbitrary class instances (e.g. ``MyClass(4.3, 5.7)``)
- Lambdas