mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 07:01:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			248 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			248 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Interface to the Expat non-validating XML parser."""
 | 
						|
import sys
 | 
						|
 | 
						|
from pyexpat import *
 | 
						|
 | 
						|
# provide pyexpat submodules as xml.parsers.expat submodules
 | 
						|
sys.modules['xml.parsers.expat.model'] = model
 | 
						|
sys.modules['xml.parsers.expat.errors'] = errors
 |