summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2015-11-05 10:37:51 +0500
committerTim Graham <timograham@gmail.com>2015-11-18 12:06:03 -0500
commit7a452c5ce295679307bd81dd9b5f37b3cf762acf (patch)
tree5471571f67f48aadbe31478e1491b13bc8f63fde /docs
parent7803f429a4d435623cb7b91dd324d3aadad87380 (diff)
Fixed #25665 -- Deprecated getter/setter of Point.tuple.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt3
-rw-r--r--docs/releases/1.10.txt4
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 77ab15eb3c..2b21b98179 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -118,6 +118,9 @@ details on these changes.
* The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and
``set_z()`` methods of ``django.contrib.gis.geos.Point`` will be removed.
+* The ``get_coords()`` and ``set_coords()`` methods of
+ ``django.contrib.gis.geos.Point`` will be removed.
+
.. _deprecation-removed-in-1.10:
1.10
diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt
index 0329456be0..d16075f00f 100644
--- a/docs/releases/1.10.txt
+++ b/docs/releases/1.10.txt
@@ -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
~~~~~~~~~~~~~