flickrapi

diff UPGRADING @ 283:1d6a422fdb40

self._data_walker -> self.data_walker
author Sybren A. Stüvel <sybren@stuvel.eu>
date Thu, 29 Dec 2011 16:39:49 +0100
parents 5b3a355d3450
children
line diff
     1.1 --- a/UPGRADING	Tue Feb 05 11:17:02 2008 +0000
     1.2 +++ b/UPGRADING	Thu Dec 29 16:39:49 2011 +0100
     1.3 @@ -1,6 +1,27 @@
     1.4  Upgrading from previous versions
     1.5  =================================
     1.6  
     1.7 +From 1.1
     1.8 +---------------------------------
     1.9 +
    1.10 +Some methods have been deprecated in version 1.1, which are now
    1.11 +removed. Those are the class methods:
    1.12 +
    1.13 +    - test_failure
    1.14 +    - get_printable_error
    1.15 +    - get_rsp_error_code
    1.16 +    - get_rsp_error_msg
    1.17 +
    1.18 +The default parser format has been changed from XMLNode to
    1.19 +ElementTree. Either convert your code to use the new ElementTree
    1.20 +parser, or pass the ``format='xmlnode'`` parameter to the FlickrAPI
    1.21 +constructor.
    1.22 +
    1.23 +The upload and replace methods now use the format parameter, so if you
    1.24 +use ElementTree as the parser, you'll now also get an ElementTree
    1.25 +response from uploading and replacing photos. To keep the old
    1.26 +behaviour you can pass ``format='xmlnode'`` to those methods.
    1.27 +
    1.28  From 0.15
    1.29  ---------------------------------
    1.30