mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	Remove unused imports in files: * initconfig.c * main.c * preconfig.h * pylifecycle.c * python.c * pythonrun.c
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			266 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			266 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Minimal main program -- everything is loaded from the library */
 | 
						|
 | 
						|
#include "Python.h"
 | 
						|
 | 
						|
#ifdef MS_WINDOWS
 | 
						|
int
 | 
						|
wmain(int argc, wchar_t **argv)
 | 
						|
{
 | 
						|
    return Py_Main(argc, argv);
 | 
						|
}
 | 
						|
#else
 | 
						|
int
 | 
						|
main(int argc, char **argv)
 | 
						|
{
 | 
						|
    return Py_BytesMain(argc, argv);
 | 
						|
}
 | 
						|
#endif
 |