mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 02:15:10 +00:00 
			
		
		
		
	 6c71091fbe
			
		
	
	
		6c71091fbe
		
	
	
	
	
		
			
			the new way that once writes types. Deleted the old section and sample code and added a new section building on the Noddy example.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from distutils.core import setup, Extension
 | |
| setup(name="noddy", version="1.0",
 | |
|       ext_modules=[
 | |
|          Extension("noddy", ["noddy.c"]),
 | |
|          Extension("noddy2", ["noddy2.c"]),
 | |
|          Extension("noddy3", ["noddy3.c"]),
 | |
|          Extension("noddy4", ["noddy4.c"]),
 | |
|          ])
 | |
| 
 |