Changes between Initial Version and Version 1 of Ticket #25342


Ignore:
Timestamp:
Sep 3, 2015, 4:23:14 AM (9 years ago)
Author:
Bhargav Kowshik
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25342 – Description

    initial v1  
    22
    33{{{#!python
    4     from django.contrib.gis.geos import Point
     4from django.contrib.gis.geos import Point
    55
    6     p1 = Point(x=1, y=1, z=1, srid=4326)
    7     print p1 == p1  # True
     6p1 = Point(x=1, y=1, z=1, srid=4326)
     7print p1 == p1  # True
    88
    9     p2 = Point(x=1.1, y=1, z=1, srid=4326)
    10     print p1 == p2  # False
     9p2 = Point(x=1.1, y=1, z=1, srid=4326)
     10print p1 == p2  # False
    1111
    12     p3 = Point(x=1, y=1, z=2, srid=4326)
    13     print p1 == p3  # True. Is this a bug?
     12p3 = Point(x=1, y=1, z=2, srid=4326)
     13print p1 == p3  # True. Is this a bug?
    1414}}}
Back to Top