diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2007-01-20 14:14:26 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2007-01-20 14:14:26 +0100 |
commit | f036a7eafc6ae33f2983af58da0af88fb755f727 (patch) | |
tree | 1a884335e180f45125f0333a9d7fd7065de2eb63 | |
parent | 498dd9da3febc10ba8b3669fb0abb2dccec593f6 (diff) | |
download | pyexiv2-f036a7eafc6ae33f2983af58da0af88fb755f727.tar.gz |
Added a fixme in the python source.
Updated the todo list.
-rw-r--r-- | src/pyexiv2.py | 4 | ||||
-rw-r--r-- | todo | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/pyexiv2.py b/src/pyexiv2.py index 1e88c37..a7280e4 100644 --- a/src/pyexiv2.py +++ b/src/pyexiv2.py @@ -424,8 +424,8 @@ class Image(libpyexiv2.Image): else: # Value must already be a string. # Warning: no distinction is possible between values that really are - # strings (type 'String') and those that are of type 'Undefined'... - # TODO: handle this correctly + # strings (type 'String') and those that are of type 'Undefined'. + # FIXME: for tags of type 'Undefined', this does not seem to work... strVal = str(value) self.setIptcTag(key, strVal) @@ -1,8 +1,6 @@ todo list -- High-level (Python types) IPTC tags handling: finish the implementation of - method setIptcTagValue(). - Convert exiv2 C++ exceptions to python exceptions (if that is possible?) instead of returning empty strings. -- Add extensive unit tests. -- Document the binding. +- Write unit tests. +- Write a complete documentation for the binding and it uses. |