Changes between Initial Version and Version 1 of Ticket #25342
- Timestamp:
- Sep 3, 2015, 4:23:14 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25342 – Description
initial v1 2 2 3 3 {{{#!python 4 4 from django.contrib.gis.geos import Point 5 5 6 7 6 p1 = Point(x=1, y=1, z=1, srid=4326) 7 print p1 == p1 # True 8 8 9 10 9 p2 = Point(x=1.1, y=1, z=1, srid=4326) 10 print p1 == p2 # False 11 11 12 13 12 p3 = Point(x=1, y=1, z=2, srid=4326) 13 print p1 == p3 # True. Is this a bug? 14 14 }}}