mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	This is to reduce merge conflicts (Modules/Setup.stdlib.in) for subsequent pull requests for the issue.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "parts.h"
 | 
						|
#include "util.h"
 | 
						|
 | 
						|
static PyMethodDef test_methods[] = {
 | 
						|
    {NULL},
 | 
						|
};
 | 
						|
 | 
						|
int
 | 
						|
_PyTestCapi_Init_Numbers(PyObject *mod)
 | 
						|
{
 | 
						|
    if (PyModule_AddFunctions(mod, test_methods) < 0) {
 | 
						|
        return -1;
 | 
						|
    }
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |