mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			157 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			157 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import annotations
 | 
						|
 | 
						|
from .helper import hopper
 | 
						|
 | 
						|
 | 
						|
def test_sanity() -> None:
 | 
						|
    data = hopper().tobytes()
 | 
						|
    assert isinstance(data, bytes)
 |