From 57beef565f6861f61a7d56cacf66ea3a673ab3e7 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Wed, 16 Jan 2008 15:18:21 +0000 Subject: [PATCH] cleanups --- TODO | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/TODO b/TODO index 99726c9f..7bf04b5c 100644 --- a/TODO +++ b/TODO @@ -1,3 +1,27 @@ +- oops: + +vec ($VIPSHOME/share/nip2/compat/7.10/_stdenv.def:58) refers to undefined +symbol im_eor_vec +vec ($VIPSHOME/share/nip2/compat/7.10/_stdenv.def:58) refers to undefined +symbol im_or_vec +vec ($VIPSHOME/share/nip2/compat/7.10/_stdenv.def:58) refers to undefined +symbol im_and_vec + + add compat hooks for these + +- write our own python extension to call a vips operation by name + + result = vips_call ("name", args) + + then call that from VImage_method + +- do we really need VImage_method? Can't we write + + __getattr__ (self, name) = lambda (obj_to_call, arguments): + + or something like that? + + - try im_max ~/pics/wtc.jpg @@ -42,6 +66,11 @@ Python binding or do we need to make sure our python modules export all their im_ symbols? + check: + + http://www.swig.org/Doc1.3/SWIGDocumentation.html#Python_nn8 + http://docs.python.org/dist/dist.html + WONTFIX =======