mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 19:34:08 +00:00 
			
		
		
		
	* Replace uses of `PyCell_GET` and `PyCell_SET`. These macros are not safe to use in the free-threaded build. Use `PyCell_GetRef()` and `PyCell_SetTakeRef()` instead. * Since `PyCell_GetRef()` returns a strong rather than borrowed ref, some code restructuring was required, e.g. `frame_get_var()` returns a strong ref now. * Add critical sections to `PyCell_GET` and `PyCell_SET`. * Move critical_section.h earlier in the Python.h file. * Add `PyCell_GET` to the free-threading howto table of APIs that return borrowed refs. * Add additional unit tests for free-threading.
		
			
				
	
	
		
			141 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// Entry point of the Python C API.
 | 
						|
// C extensions should only #include <Python.h>, and not include directly
 | 
						|
// the other Python header files included by <Python.h>.
 | 
						|
 | 
						|
#ifndef Py_PYTHON_H
 | 
						|
#define Py_PYTHON_H
 | 
						|
 | 
						|
// Since this is a "meta-include" file, "#ifdef __cplusplus / extern "C" {"
 | 
						|
// is not needed.
 | 
						|
 | 
						|
 | 
						|
// Include Python header files
 | 
						|
#include "patchlevel.h"
 | 
						|
#include "pyconfig.h"
 | 
						|
#include "pymacconfig.h"
 | 
						|
 | 
						|
 | 
						|
// Include standard header files
 | 
						|
#include <assert.h>               // assert()
 | 
						|
#include <inttypes.h>             // uintptr_t
 | 
						|
#include <limits.h>               // INT_MAX
 | 
						|
#include <math.h>                 // HUGE_VAL
 | 
						|
#include <stdarg.h>               // va_list
 | 
						|
#include <wchar.h>                // wchar_t
 | 
						|
#ifdef HAVE_SYS_TYPES_H
 | 
						|
#  include <sys/types.h>          // ssize_t
 | 
						|
#endif
 | 
						|
 | 
						|
// <errno.h>, <stdio.h>, <stdlib.h> and <string.h> headers are no longer used
 | 
						|
// by Python, but kept for the backward compatibility of existing third party C
 | 
						|
// extensions. They are not included by limited C API version 3.11 and newer.
 | 
						|
//
 | 
						|
// The <ctype.h> and <unistd.h> headers are not included by limited C API
 | 
						|
// version 3.13 and newer.
 | 
						|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
 | 
						|
#  include <errno.h>              // errno
 | 
						|
#  include <stdio.h>              // FILE*
 | 
						|
#  include <stdlib.h>             // getenv()
 | 
						|
#  include <string.h>             // memcpy()
 | 
						|
#endif
 | 
						|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030d0000
 | 
						|
#  include <ctype.h>              // tolower()
 | 
						|
#  ifndef MS_WINDOWS
 | 
						|
#    include <unistd.h>           // close()
 | 
						|
#  endif
 | 
						|
#endif
 | 
						|
 | 
						|
// gh-111506: The free-threaded build is not compatible with the limited API
 | 
						|
// or the stable ABI.
 | 
						|
#if defined(Py_LIMITED_API) && defined(Py_GIL_DISABLED)
 | 
						|
#  error "The limited API is not currently supported in the free-threaded build"
 | 
						|
#endif
 | 
						|
 | 
						|
#if defined(Py_GIL_DISABLED) && defined(_MSC_VER)
 | 
						|
#  include <intrin.h>             // __readgsqword()
 | 
						|
#endif
 | 
						|
 | 
						|
#if defined(Py_GIL_DISABLED) && defined(__MINGW32__)
 | 
						|
#  include <intrin.h>             // __readgsqword()
 | 
						|
#endif
 | 
						|
 | 
						|
// Include Python header files
 | 
						|
#include "pyport.h"
 | 
						|
#include "pymacro.h"
 | 
						|
#include "pymath.h"
 | 
						|
#include "pymem.h"
 | 
						|
#include "pytypedefs.h"
 | 
						|
#include "pybuffer.h"
 | 
						|
#include "pystats.h"
 | 
						|
#include "pyatomic.h"
 | 
						|
#include "lock.h"
 | 
						|
#include "critical_section.h"
 | 
						|
#include "object.h"
 | 
						|
#include "refcount.h"
 | 
						|
#include "objimpl.h"
 | 
						|
#include "typeslots.h"
 | 
						|
#include "pyhash.h"
 | 
						|
#include "cpython/pydebug.h"
 | 
						|
#include "bytearrayobject.h"
 | 
						|
#include "bytesobject.h"
 | 
						|
#include "unicodeobject.h"
 | 
						|
#include "pyerrors.h"
 | 
						|
#include "longobject.h"
 | 
						|
#include "cpython/longintrepr.h"
 | 
						|
#include "boolobject.h"
 | 
						|
#include "floatobject.h"
 | 
						|
#include "complexobject.h"
 | 
						|
#include "rangeobject.h"
 | 
						|
#include "memoryobject.h"
 | 
						|
#include "tupleobject.h"
 | 
						|
#include "listobject.h"
 | 
						|
#include "dictobject.h"
 | 
						|
#include "cpython/odictobject.h"
 | 
						|
#include "enumobject.h"
 | 
						|
#include "setobject.h"
 | 
						|
#include "methodobject.h"
 | 
						|
#include "moduleobject.h"
 | 
						|
#include "monitoring.h"
 | 
						|
#include "cpython/funcobject.h"
 | 
						|
#include "cpython/classobject.h"
 | 
						|
#include "fileobject.h"
 | 
						|
#include "pycapsule.h"
 | 
						|
#include "cpython/code.h"
 | 
						|
#include "pyframe.h"
 | 
						|
#include "traceback.h"
 | 
						|
#include "sliceobject.h"
 | 
						|
#include "cpython/cellobject.h"
 | 
						|
#include "iterobject.h"
 | 
						|
#include "cpython/initconfig.h"
 | 
						|
#include "pystate.h"
 | 
						|
#include "cpython/genobject.h"
 | 
						|
#include "descrobject.h"
 | 
						|
#include "genericaliasobject.h"
 | 
						|
#include "warnings.h"
 | 
						|
#include "weakrefobject.h"
 | 
						|
#include "structseq.h"
 | 
						|
#include "cpython/picklebufobject.h"
 | 
						|
#include "cpython/pytime.h"
 | 
						|
#include "codecs.h"
 | 
						|
#include "pythread.h"
 | 
						|
#include "cpython/context.h"
 | 
						|
#include "modsupport.h"
 | 
						|
#include "compile.h"
 | 
						|
#include "pythonrun.h"
 | 
						|
#include "pylifecycle.h"
 | 
						|
#include "ceval.h"
 | 
						|
#include "sysmodule.h"
 | 
						|
#include "audit.h"
 | 
						|
#include "osmodule.h"
 | 
						|
#include "intrcheck.h"
 | 
						|
#include "import.h"
 | 
						|
#include "abstract.h"
 | 
						|
#include "bltinmodule.h"
 | 
						|
#include "cpython/pyctype.h"
 | 
						|
#include "pystrtod.h"
 | 
						|
#include "pystrcmp.h"
 | 
						|
#include "fileutils.h"
 | 
						|
#include "cpython/pyfpe.h"
 | 
						|
#include "cpython/tracemalloc.h"
 | 
						|
 | 
						|
#endif /* !Py_PYTHON_H */
 |