diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2015-11-05 08:45:42 +0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-11-18 11:57:26 -0500 |
| commit | 7803f429a4d435623cb7b91dd324d3aadad87380 (patch) | |
| tree | c086fb15a4b9d873dde92598823055057f4e46ba /docs | |
| parent | b7177cc2a422a0183c8f2d56eceb6b9323c6f959 (diff) | |
Refs #25665 -- Deprecated getters/setters of Point coordinate properties.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.10.txt | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index db2bf02af2..77ab15eb3c 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -115,6 +115,9 @@ details on these changes. * The ``get_srid()`` and ``set_srid()`` methods of ``django.contrib.gis.geos.GEOSGeometry`` will be removed. +* The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and + ``set_z()`` 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 d4a0e63094..0329456be0 100644 --- a/docs/releases/1.10.txt +++ b/docs/releases/1.10.txt @@ -335,6 +335,10 @@ This prevents confusion about an assignment resulting in an implicit save. :class:`~django.contrib.gis.geos.GEOSGeometry` are deprecated in favor of the :attr:`~django.contrib.gis.geos.GEOSGeometry.srid` property. +* The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and + ``set_z()`` methods of :class:`~django.contrib.gis.geos.Point` are deprecated + in favor of the ``x``, ``y``, and ``z`` properties. + Miscellaneous ~~~~~~~~~~~~~ |
