mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	
		
			
	
	
		
			18 lines
		
	
	
	
		
			230 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
	
		
			230 B
		
	
	
	
		
			C
		
	
	
	
	
	
|   | #include "parts.h"
 | ||
|  | #include "util.h"
 | ||
|  | 
 | ||
|  | 
 | ||
|  | static PyMethodDef test_methods[] = { | ||
|  |     {NULL}, | ||
|  | }; | ||
|  | 
 | ||
|  | int | ||
|  | _PyTestCapi_Init_Codec(PyObject *m) | ||
|  | { | ||
|  |     if (PyModule_AddFunctions(m, test_methods) < 0){ | ||
|  |         return -1; | ||
|  |     } | ||
|  | 
 | ||
|  |     return 0; | ||
|  | } |