mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	I really don't know why I bother; these are all generated files. But I don't recall how to regenerate them nor how to fix the generator. The hardest part was fixing two mutual recursive imports; somehow changing "import foo" into "from . import foo" where foo and bar import each other AND both are imported from __init__.py caused things to break. Bah.
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			700 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			700 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""
 | 
						|
Manually generated suite used as base class for StdSuites Required and Standard
 | 
						|
suites. This is needed because the events and enums in this suite belong
 | 
						|
in the Required suite according to the Apple docs, but they often seem to be
 | 
						|
in the Standard suite.
 | 
						|
"""
 | 
						|
import aetools
 | 
						|
from . import builtin_Suite
 | 
						|
 | 
						|
 | 
						|
_code_to_module = {
 | 
						|
        'reqd' : builtin_Suite,
 | 
						|
        'core' : builtin_Suite,
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
_code_to_fullname = {
 | 
						|
        'reqd' : ('_builtinSuites.builtin_Suite', 'builtin_Suite'),
 | 
						|
        'core' : ('_builtinSuites.builtin_Suite', 'builtin_Suite'),
 | 
						|
}
 | 
						|
 | 
						|
from _builtinSuites.builtin_Suite import *
 | 
						|
 | 
						|
class _builtinSuites(builtin_Suite_Events,
 | 
						|
                aetools.TalkTo):
 | 
						|
    _signature = 'ascr'
 |