mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	gh-106320: Remove private _PyEval function (#108433)
Move private _PyEval functions to the internal C API (pycore_ceval.h): * _PyEval_GetBuiltin() * _PyEval_GetBuiltinId() * _PyEval_GetSwitchInterval() * _PyEval_MakePendingCalls() * _PyEval_SetProfile() * _PyEval_SetSwitchInterval() * _PyEval_SetTrace() No longer export most of these functions.
This commit is contained in:
		
							parent
							
								
									995f4c48e1
								
							
						
					
					
						commit
						c494fb333b
					
				
					 19 changed files with 37 additions and 12 deletions
				
			
		|  | @ -10,6 +10,7 @@ | |||
| #include "Python.h" | ||||
| #include "pycore_bytesobject.h"   // _PyBytes_Repeat | ||||
| #include "pycore_call.h"          // _PyObject_CallMethod() | ||||
| #include "pycore_ceval.h"         // _PyEval_GetBuiltin() | ||||
| #include "pycore_long.h"          // _PyLong_FromByteArray() | ||||
| #include "pycore_moduleobject.h"  // _PyModule_GetState() | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Victor Stinner
						Victor Stinner