mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-01 00:17:27 +03:00 
			
		
		
		
	This is Christoph Gohlke's test suite from his personal PIL package found at http://www.lfd.uci.edu/~gohlke/pythonlibs/. This is just to bring it in as a separate commit. Future commits will align it with Pillow.
		
			
				
	
	
		
			20 lines
		
	
	
		
			555 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			555 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from tester import *
 | |
| 
 | |
| from PIL import Image
 | |
| 
 | |
| def test_palette():
 | |
|     def palette(mode):
 | |
|         p = lena(mode).getpalette()
 | |
|         if p:
 | |
|             return p[:10]
 | |
|         return None
 | |
|     assert_equal(palette("1"), None)
 | |
|     assert_equal(palette("L"), None)
 | |
|     assert_equal(palette("I"), None)
 | |
|     assert_equal(palette("F"), None)
 | |
|     assert_equal(palette("P"), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
 | |
|     assert_equal(palette("RGB"), None)
 | |
|     assert_equal(palette("RGBA"), None)
 | |
|     assert_equal(palette("CMYK"), None)
 | |
|     assert_equal(palette("YCbCr"), None)
 |