aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2007-01-20 14:14:26 +0100
committerOlivier Tilloy <olivier@tilloy.net>2007-01-20 14:14:26 +0100
commitf036a7eafc6ae33f2983af58da0af88fb755f727 (patch)
tree1a884335e180f45125f0333a9d7fd7065de2eb63
parent498dd9da3febc10ba8b3669fb0abb2dccec593f6 (diff)
downloadpyexiv2-f036a7eafc6ae33f2983af58da0af88fb755f727.tar.gz
Added a fixme in the python source.
Updated the todo list.
-rw-r--r--src/pyexiv2.py4
-rw-r--r--todo6
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)
diff --git a/todo b/todo
index 2b0e0f1..4b2c21f 100644
--- a/todo
+++ b/todo
@@ -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.