TODO notes

This commit is contained in:
John Cupitt 2016-03-11 13:47:19 +00:00
parent 61d2aa6586
commit 4f41617d89
1 changed files with 12 additions and 1 deletions

13
TODO
View File

@ -83,7 +83,18 @@
- why can't we do
im = Vips.Image.new_from_file(sys.argv[1], access = "sequential")
im = Vips.Image.new_from_file("/data/john/pics/k2.jpg", access = "sequential")
import logging
logging.basicConfig(level = logging.DEBUG)
from gi.repository import Vips
im = Vips.Image.new_from_file("/data/john/pics/k2.jpg", access = "sequential")
DEBUG:gi.overrides.Vips:assigning sequential to access
DEBUG:gi.overrides.Vips:access needs a <GType VipsAccess (20432752)>
DEBUG:gi.overrides.Vips:assigning sequential
ValueError: invalid literal for int() with base 10: 'sequential'