From 7134c64836c8d6b014bda96ce83ced141497b55b Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Fri, 11 Aug 2017 09:23:59 +0100 Subject: [PATCH] notes --- TODO | 10 ++++++++++ test/test_iofuncs.py | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index 5e036d01..9b84c591 100644 --- a/TODO +++ b/TODO @@ -1,3 +1,13 @@ +- vips_image_write() to a temp file is rather broken + + things like reorder and upstream/downstream will still be keeping links after + write, so unreffing the input will eventually trigger a crash + + rewind should break more things ... does it remove upsteam/downstream? does it + just need to remove reorder links? + + perhaps reorder should use upstream/downstream, then it will be broken anyway + - remove execption specs from libvipsCC, gcc 7.1 will complain about them - not sure about utf8 error messages on win diff --git a/test/test_iofuncs.py b/test/test_iofuncs.py index b4b377a1..e17757f8 100755 --- a/test/test_iofuncs.py +++ b/test/test_iofuncs.py @@ -83,6 +83,5 @@ class TestIofuncs(unittest.TestCase): self.assertEqual(im2.bands, 3) self.assertEqual(im2.avg(), 2) - if __name__ == '__main__': unittest.main()