Changes between Version 12 and Version 13 of GDAL20Changes


Ignore:
Timestamp:
Sep 24, 2011, 1:59:41 PM (13 years ago)
Author:
Even Rouault
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GDAL20Changes

    v12 v13  
    2727
    2828Generally, code review for stricter type would be beneficial, where possible.
     29
     30== Increase size of OGRField structure ==
     31
     32Might be necessary to have sub-second precision for OFTDateTime. Has been postponed because of its impact on ABI. Related ticket : #2680
     33
     34== Fix object lifecycle management in Python bindings ==
     35
     36Has always been a pain for newbees, and sometimes oldbees too. Current sitation is discussed in [http://trac.osgeo.org/gdal/wiki/PythonGotchas PythonGotchas] page. Related ticket : #3592
     37
     38Not strictly an API/ABI issue, but fixing some of the issues might require changes in user scripts.
    2939
    3040== Housekeeping issues ==
     
    5868 * #1743 - Const correctness in cpl_http module
    5969 * #1752 - Make new method in OGREnvelope following const-correctness
     70 * #2680 - OGR OFTDateTime needs more precision
    6071 * #3127 - Use char const** instead of char** for input strings with pointer reset
    6172 * #3153 - Define OGRErr as enumerated type
    6273 * #3818 - GDAL Command line tool naming consistency
     74 * #3952 - Python bindings: allow chaining method calls while preserving C++ objects alive