mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 18:07:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			148 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			148 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import annotations
 | 
						|
from .helper import hopper
 | 
						|
 | 
						|
 | 
						|
def test_sanity():
 | 
						|
    data = hopper().tobytes()
 | 
						|
    assert isinstance(data, bytes)
 |