~malept/pyexiv2/0.2-build-mt

« back to all changes in this revision

Viewing changes to src/pyexiv2/xmp.py

  • Committer: Olivier Tilloy
  • Date: 2010-01-24 18:51:54 UTC
  • Revision ID: olivier@tilloy.net-20100124185154-5ahnlosg87u1lsod
Choice is not a simple type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
     - alt, bag, seq: C{list} of the contained simple type
65
65
     - lang alt: C{dict} of (language-code: value)
66
66
     - Boolean: C{bool}
67
 
     - Choice: [not implemented yet]
68
67
     - Colorant: [not implemented yet]
69
68
     - Date: C{datetime.date}, C{datetime.datetime}
70
69
     - Dimensions: [not implemented yet]
252
251
            else:
253
252
                raise XmpValueError(value, type)
254
253
 
255
 
        elif type == 'Choice':
256
 
            # TODO
257
 
            raise NotImplementedError('XMP conversion for type [%s]' % type)
258
 
 
259
254
        elif type == 'Colorant':
260
255
            # TODO
261
256
            raise NotImplementedError('XMP conversion for type [%s]' % type)