mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	In addition to the increase test coverage, this is a precursor to sorting out how we handle interpreters created directly via the C-API.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			483 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			483 B
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
#define _RESOLVE_MODINIT_FUNC_NAME(NAME) \
 | 
						|
    PyInit_ ## NAME
 | 
						|
#define RESOLVE_MODINIT_FUNC_NAME(NAME) \
 | 
						|
    _RESOLVE_MODINIT_FUNC_NAME(NAME)
 | 
						|
 | 
						|
 | 
						|
static int
 | 
						|
ensure_xid_class(PyTypeObject *cls, crossinterpdatafunc getdata)
 | 
						|
{
 | 
						|
    //assert(cls->tp_flags & Py_TPFLAGS_HEAPTYPE);
 | 
						|
    return _PyCrossInterpreterData_RegisterClass(cls, getdata);
 | 
						|
}
 | 
						|
 | 
						|
#ifdef REGISTERS_HEAP_TYPES
 | 
						|
static int
 | 
						|
clear_xid_class(PyTypeObject *cls)
 | 
						|
{
 | 
						|
    return _PyCrossInterpreterData_UnregisterClass(cls);
 | 
						|
}
 | 
						|
#endif
 |