1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #25665 -- Deprecated getter/setter of Point.tuple.

This commit is contained in:
Sergey Fedoseev
2015-11-05 10:37:51 +05:00
committed by Tim Graham
parent 7803f429a4
commit 7a452c5ce2
4 changed files with 38 additions and 7 deletions

View File

@@ -339,6 +339,10 @@ This prevents confusion about an assignment resulting in an implicit save.
``set_z()`` methods of :class:`~django.contrib.gis.geos.Point` are deprecated
in favor of the ``x``, ``y``, and ``z`` properties.
* The ``get_coords()`` and ``set_coords()`` methods of
:class:`~django.contrib.gis.geos.Point` are deprecated in favor of the
``tuple`` property.
Miscellaneous
~~~~~~~~~~~~~