merge to master

This commit is contained in:
wiredfool 2013-03-14 14:38:49 -07:00
commit d98abd877b
4 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ include = [x for x in sys.argv[1:] if x[:2] != "--"]
skipped = []
# XXX Skip test, is there a better way?
files.remove('Tests/test_file_tiff.py')
files.remove(os.path.join('Tests', 'test_file_tiff.py'))
skipped.append('test_file_tiff')
python_options = " ".join(python_options)

View File

@ -123,7 +123,6 @@ def test_g4_eq_png():
def test_g4_write():
"""Checking to see that the saved image is the same as what we wrote"""
file = "Tests/images/lena_g4_500.tif"
orig = Image.open(file)

View File

@ -49,12 +49,13 @@ extern int ImagingLibTiffSetField(ImagingCodecState state, ttag_t tag, ...);
#else
/*
#define VA_ARGS(...) __VA_ARGS__
#define TRACE(args) fprintf(stderr, VA_ARGS args)
/*
#define TRACE(args)
*/
#define TRACE(args)
#endif /* _MSC_VER */

View File

@ -157,7 +157,7 @@ def testimage():
def check_module(feature, module):
try:
__import__("PIL." + module)
__import__(module)
except ImportError:
print("***", feature, "support not installed")
else: