From f036a7eafc6ae33f2983af58da0af88fb755f727 Mon Sep 17 00:00:00 2001 From: Olivier Tilloy Date: Sat, 20 Jan 2007 14:14:26 +0100 Subject: Added a fixme in the python source. Updated the todo list. --- src/pyexiv2.py | 4 ++-- 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) 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. -- cgit