Django

Code

Show
Ignore:
Timestamp:
12/25/07 15:27:56 (1 year ago)
Author:
jbronn
Message:

gis: geos: all pointer access is now done via the ptr property to prevent calling GEOS routines on NULL pointers; added the geos_version_info routine; added __copy__ and __deepcopy__ interfaces that return clones (for compatibility w/queryset-refactor); __eq__ may now compare WKT strings (for compatibility w/newforms-admin); made tests compatible w/GEOS 3.0.0 release.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/gis/django/contrib/gis/geos/__init__.py

    r6861 r6978  
    3333from django.contrib.gis.geos.collections import GeometryCollection, MultiPoint, MultiLineString, MultiPolygon 
    3434from django.contrib.gis.geos.error import GEOSException, GEOSIndexError 
    35 from django.contrib.gis.geos.libgeos import geos_version 
     35from django.contrib.gis.geos.libgeos import geos_version, geos_version_info 
    3636 
    3737def fromfile(file_name):