diff options
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/fields.txt | 10 | ||||
| -rw-r--r-- | docs/ref/models/querysets.txt | 8 |
2 files changed, 4 insertions, 14 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index ac1e2ffffb..4f2a92a66b 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -413,11 +413,6 @@ The admin represents this as an ``<input type="text">`` (a single-line input). A :class:`CharField` that checks that the value is a valid e-mail address. -In Django 0.96, this doesn't accept :attr:`~CharField.max_length`; its -:class:`~CharField.max_length` is automatically set to 75. In the Django -development version, :class:`~CharField.max_length` is set to 75 by default, but -you can specify it to override default behavior. - ``FileField`` ------------- @@ -577,11 +572,6 @@ A floating-point number represented in Python by a ``float`` instance. The admin represents this as an ``<input type="text">`` (a single-line input). -**NOTE:** The semantics of :class:`FloatField` have changed in the Django -development version. See the `Django 0.96 documentation`_ for the old behavior. - -.. _Django 0.96 documentation: http://www.djangoproject.com/documentation/0.96/model-api/#floatfield - ``ImageField`` -------------- diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index c1fbdce5ca..3525865ac6 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -959,10 +959,10 @@ SQL equivalents:: SELECT ... WHERE id IS NULL; .. versionchanged:: 1.0 - The semantics of ``id__exact=None`` have - changed in the development version. Previously, it was (intentionally) - converted to ``WHERE id = NULL`` at the SQL level, which would never match - anything. It has now been changed to behave the same as ``id__isnull=True``. + The semantics of ``id__exact=None`` have changed in Django 1.0. Previously, + it was (intentionally) converted to ``WHERE id = NULL`` at the SQL level, + which would never match anything. It has now been changed to behave the + same as ``id__isnull=True``. .. admonition:: MySQL comparisons |
