mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	gh-106320: Remove private _PyLong converter functions (#108499)
Move these private functions to the internal C API (pycore_long.h): * _PyLong_UnsignedInt_Converter() * _PyLong_UnsignedLongLong_Converter() * _PyLong_UnsignedLong_Converter() * _PyLong_UnsignedShort_Converter() Argument Clinic now emits #include "pycore_long.h" when these functions are used.
This commit is contained in:
		
							parent
							
								
									86bc9e35c4
								
							
						
					
					
						commit
						713afb8804
					
				
					 14 changed files with 46 additions and 14 deletions
				
			
		|  | @ -7,9 +7,18 @@ | |||
| # macro. Usually it's defined by the C file which includes it. | ||||
| # Other header files have a similar issue. | ||||
| NEED_BUILD_CORE = { | ||||
|     # Header ".h" files | ||||
|     'cjkcodecs.h', | ||||
|     'multibytecodec.h', | ||||
|     'socketmodule.h', | ||||
| 
 | ||||
|     # Argument Clinic ".c.h" files | ||||
|     '_testclinic.c.h', | ||||
|     '_testclinic_depr.c.h', | ||||
|     'overlapped.c.h', | ||||
|     'posixmodule.c.h', | ||||
|     'selectmodule.c.h', | ||||
|     'sha3module.c.h', | ||||
| } | ||||
| 
 | ||||
| TOOL = 'gcc' | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Victor Stinner
						Victor Stinner