Skip to content

Commit 41dc0f1

Browse files
committed
Update Python inlined files: 3.10.8
1 parent 02d0a87 commit 41dc0f1

File tree

122 files changed

+22668
-1052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+22668
-1052
lines changed
Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
#ifndef Py_PYTHON_H
2+
#define Py_PYTHON_H
3+
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
4+
5+
/* Include nearly all Python header files */
6+
7+
#include "patchlevel.h"
8+
#include "pyconfig.h"
9+
#include "pymacconfig.h"
10+
11+
#include <limits.h>
12+
13+
#ifndef UCHAR_MAX
14+
#error "Something's broken. UCHAR_MAX should be defined in limits.h."
15+
#endif
16+
17+
#if UCHAR_MAX != 255
18+
#error "Python's source code assumes C's unsigned char is an 8-bit type."
19+
#endif
20+
21+
#if defined(__sgi) && !defined(_SGI_MP_SOURCE)
22+
#define _SGI_MP_SOURCE
23+
#endif
24+
25+
#include <stdio.h>
26+
#ifndef NULL
27+
# error "Python.h requires that stdio.h define NULL."
28+
#endif
29+
30+
#include <string.h>
31+
#ifdef HAVE_ERRNO_H
32+
#include <errno.h>
33+
#endif
34+
#include <stdlib.h>
35+
#ifndef MS_WINDOWS
36+
#include <unistd.h>
37+
#endif
38+
39+
/* For size_t? */
40+
#ifdef HAVE_STDDEF_H
41+
#include <stddef.h>
42+
#endif
43+
44+
/* CAUTION: Build setups should ensure that NDEBUG is defined on the
45+
* compiler command line when building Python in release mode; else
46+
* assert() calls won't be removed.
47+
*/
48+
#include <assert.h>
49+
50+
#include "pyport.h"
51+
#include "pymacro.h"
52+
53+
/* A convenient way for code to know if sanitizers are enabled. */
54+
#if defined(__has_feature)
55+
# if __has_feature(memory_sanitizer)
56+
# if !defined(_Py_MEMORY_SANITIZER)
57+
# define _Py_MEMORY_SANITIZER
58+
# endif
59+
# endif
60+
# if __has_feature(address_sanitizer)
61+
# if !defined(_Py_ADDRESS_SANITIZER)
62+
# define _Py_ADDRESS_SANITIZER
63+
# endif
64+
# endif
65+
#elif defined(__GNUC__)
66+
# if defined(__SANITIZE_ADDRESS__)
67+
# define _Py_ADDRESS_SANITIZER
68+
# endif
69+
#endif
70+
71+
#include "pymath.h"
72+
#include "pymem.h"
73+
74+
#include "object.h"
75+
#include "objimpl.h"
76+
#include "typeslots.h"
77+
#include "pyhash.h"
78+
79+
#include "cpython/pydebug.h"
80+
81+
#include "bytearrayobject.h"
82+
#include "bytesobject.h"
83+
#include "unicodeobject.h"
84+
#include "longobject.h"
85+
#include "longintrepr.h"
86+
#include "boolobject.h"
87+
#include "floatobject.h"
88+
#include "complexobject.h"
89+
#include "rangeobject.h"
90+
#include "memoryobject.h"
91+
#include "tupleobject.h"
92+
#include "listobject.h"
93+
#include "dictobject.h"
94+
#include "cpython/odictobject.h"
95+
#include "enumobject.h"
96+
#include "setobject.h"
97+
#include "methodobject.h"
98+
#include "moduleobject.h"
99+
#include "funcobject.h"
100+
#include "classobject.h"
101+
#include "fileobject.h"
102+
#include "pycapsule.h"
103+
#include "code.h"
104+
#include "pyframe.h"
105+
#include "traceback.h"
106+
#include "sliceobject.h"
107+
#include "cellobject.h"
108+
#include "iterobject.h"
109+
#include "cpython/initconfig.h"
110+
#include "genobject.h"
111+
#include "descrobject.h"
112+
#include "genericaliasobject.h"
113+
#include "warnings.h"
114+
#include "weakrefobject.h"
115+
#include "structseq.h"
116+
#include "namespaceobject.h"
117+
#include "cpython/picklebufobject.h"
118+
#include "cpython/pytime.h"
119+
120+
#include "codecs.h"
121+
#include "pyerrors.h"
122+
#include "pythread.h"
123+
#include "pystate.h"
124+
#include "context.h"
125+
126+
#include "modsupport.h"
127+
#include "compile.h"
128+
#include "pythonrun.h"
129+
#include "pylifecycle.h"
130+
#include "ceval.h"
131+
#include "sysmodule.h"
132+
#include "osmodule.h"
133+
#include "intrcheck.h"
134+
#include "import.h"
135+
136+
#include "abstract.h"
137+
#include "bltinmodule.h"
138+
139+
#include "eval.h"
140+
141+
#include "cpython/pyctype.h"
142+
#include "pystrtod.h"
143+
#include "pystrcmp.h"
144+
#include "fileutils.h"
145+
#include "cpython/pyfpe.h"
146+
#include "tracemalloc.h"
147+
148+
#endif /* !Py_PYTHON_H */
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#ifndef Py_CPYTHON_BYTEARRAYOBJECT_H
2+
# error "this header file must not be included directly"
3+
#endif
4+
5+
/* Object layout */
6+
typedef struct {
7+
PyObject_VAR_HEAD
8+
Py_ssize_t ob_alloc; /* How many bytes allocated in ob_bytes */
9+
char *ob_bytes; /* Physical backing buffer */
10+
char *ob_start; /* Logical start inside ob_bytes */
11+
Py_ssize_t ob_exports; /* How many buffer exports */
12+
} PyByteArrayObject;
13+
14+
/* Macros, trading safety for speed */
15+
#define PyByteArray_AS_STRING(self) \
16+
(assert(PyByteArray_Check(self)), \
17+
Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_start : _PyByteArray_empty_string)
18+
#define PyByteArray_GET_SIZE(self) (assert(PyByteArray_Check(self)), Py_SIZE(self))
19+
20+
PyAPI_DATA(char) _PyByteArray_empty_string[];
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#ifndef Py_CPYTHON_CEVAL_H
2+
# error "this header file must not be included directly"
3+
#endif
4+
5+
PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);
6+
PyAPI_DATA(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);
7+
PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
8+
PyAPI_FUNC(int) _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);
9+
PyAPI_FUNC(int) _PyEval_GetCoroutineOriginTrackingDepth(void);
10+
PyAPI_FUNC(int) _PyEval_SetAsyncGenFirstiter(PyObject *);
11+
PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFirstiter(void);
12+
PyAPI_FUNC(int) _PyEval_SetAsyncGenFinalizer(PyObject *);
13+
PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFinalizer(void);
14+
15+
/* Helper to look up a builtin object */
16+
PyAPI_FUNC(PyObject *) _PyEval_GetBuiltinId(_Py_Identifier *);
17+
/* Look at the current frame's (if any) code's co_flags, and turn on
18+
the corresponding compiler flags in cf->cf_flags. Return 1 if any
19+
flag was set, else return 0. */
20+
PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf);
21+
22+
PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int exc);
23+
24+
PyAPI_FUNC(void) _PyEval_SetSwitchInterval(unsigned long microseconds);
25+
PyAPI_FUNC(unsigned long) _PyEval_GetSwitchInterval(void);
26+
27+
PyAPI_FUNC(Py_ssize_t) _PyEval_RequestCodeExtraIndex(freefunc);
28+
29+
PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);
30+
PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *);
Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
#ifndef Py_CPYTHON_CODE_H
2+
# error "this header file must not be included directly"
3+
#endif
4+
5+
typedef uint16_t _Py_CODEUNIT;
6+
7+
#ifdef WORDS_BIGENDIAN
8+
# define _Py_OPCODE(word) ((word) >> 8)
9+
# define _Py_OPARG(word) ((word) & 255)
10+
#else
11+
# define _Py_OPCODE(word) ((word) & 255)
12+
# define _Py_OPARG(word) ((word) >> 8)
13+
#endif
14+
15+
typedef struct _PyOpcache _PyOpcache;
16+
17+
/* Bytecode object */
18+
struct PyCodeObject {
19+
PyObject_HEAD
20+
int co_argcount; /* #arguments, except *args */
21+
int co_posonlyargcount; /* #positional only arguments */
22+
int co_kwonlyargcount; /* #keyword only arguments */
23+
int co_nlocals; /* #local variables */
24+
int co_stacksize; /* #entries needed for evaluation stack */
25+
int co_flags; /* CO_..., see below */
26+
int co_firstlineno; /* first source line number */
27+
PyObject *co_code; /* instruction opcodes */
28+
PyObject *co_consts; /* list (constants used) */
29+
PyObject *co_names; /* list of strings (names used) */
30+
PyObject *co_varnames; /* tuple of strings (local variable names) */
31+
PyObject *co_freevars; /* tuple of strings (free variable names) */
32+
PyObject *co_cellvars; /* tuple of strings (cell variable names) */
33+
/* The rest aren't used in either hash or comparisons, except for co_name,
34+
used in both. This is done to preserve the name and line number
35+
for tracebacks and debuggers; otherwise, constant de-duplication
36+
would collapse identical functions/lambdas defined on different lines.
37+
*/
38+
Py_ssize_t *co_cell2arg; /* Maps cell vars which are arguments. */
39+
PyObject *co_filename; /* unicode (where it was loaded from) */
40+
PyObject *co_name; /* unicode (name, for reference) */
41+
PyObject *co_linetable; /* string (encoding addr<->lineno mapping) See
42+
Objects/lnotab_notes.txt for details. */
43+
void *co_zombieframe; /* for optimization only (see frameobject.c) */
44+
PyObject *co_weakreflist; /* to support weakrefs to code objects */
45+
/* Scratch space for extra data relating to the code object.
46+
Type is a void* to keep the format private in codeobject.c to force
47+
people to go through the proper APIs. */
48+
void *co_extra;
49+
50+
/* Per opcodes just-in-time cache
51+
*
52+
* To reduce cache size, we use indirect mapping from opcode index to
53+
* cache object:
54+
* cache = co_opcache[co_opcache_map[next_instr - first_instr] - 1]
55+
*/
56+
57+
// co_opcache_map is indexed by (next_instr - first_instr).
58+
// * 0 means there is no cache for this opcode.
59+
// * n > 0 means there is cache in co_opcache[n-1].
60+
unsigned char *co_opcache_map;
61+
_PyOpcache *co_opcache;
62+
int co_opcache_flag; // used to determine when create a cache.
63+
unsigned char co_opcache_size; // length of co_opcache.
64+
};
65+
66+
/* Masks for co_flags above */
67+
#define CO_OPTIMIZED 0x0001
68+
#define CO_NEWLOCALS 0x0002
69+
#define CO_VARARGS 0x0004
70+
#define CO_VARKEYWORDS 0x0008
71+
#define CO_NESTED 0x0010
72+
#define CO_GENERATOR 0x0020
73+
/* The CO_NOFREE flag is set if there are no free or cell variables.
74+
This information is redundant, but it allows a single flag test
75+
to determine whether there is any extra work to be done when the
76+
call frame it setup.
77+
*/
78+
#define CO_NOFREE 0x0040
79+
80+
/* The CO_COROUTINE flag is set for coroutine functions (defined with
81+
``async def`` keywords) */
82+
#define CO_COROUTINE 0x0080
83+
#define CO_ITERABLE_COROUTINE 0x0100
84+
#define CO_ASYNC_GENERATOR 0x0200
85+
86+
/* bpo-39562: These constant values are changed in Python 3.9
87+
to prevent collision with compiler flags. CO_FUTURE_ and PyCF_
88+
constants must be kept unique. PyCF_ constants can use bits from
89+
0x0100 to 0x10000. CO_FUTURE_ constants use bits starting at 0x20000. */
90+
#define CO_FUTURE_DIVISION 0x20000
91+
#define CO_FUTURE_ABSOLUTE_IMPORT 0x40000 /* do absolute imports by default */
92+
#define CO_FUTURE_WITH_STATEMENT 0x80000
93+
#define CO_FUTURE_PRINT_FUNCTION 0x100000
94+
#define CO_FUTURE_UNICODE_LITERALS 0x200000
95+
96+
#define CO_FUTURE_BARRY_AS_BDFL 0x400000
97+
#define CO_FUTURE_GENERATOR_STOP 0x800000
98+
#define CO_FUTURE_ANNOTATIONS 0x1000000
99+
100+
/* This value is found in the co_cell2arg array when the associated cell
101+
variable does not correspond to an argument. */
102+
#define CO_CELL_NOT_AN_ARG (-1)
103+
104+
/* This should be defined if a future statement modifies the syntax.
105+
For example, when a keyword is added.
106+
*/
107+
#define PY_PARSER_REQUIRES_FUTURE_KEYWORD
108+
109+
#define CO_MAXBLOCKS 20 /* Max static block nesting within a function */
110+
111+
PyAPI_DATA(PyTypeObject) PyCode_Type;
112+
113+
#define PyCode_Check(op) Py_IS_TYPE(op, &PyCode_Type)
114+
#define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars))
115+
116+
/* Public interface */
117+
PyAPI_FUNC(PyCodeObject *) PyCode_New(
118+
int, int, int, int, int, PyObject *, PyObject *,
119+
PyObject *, PyObject *, PyObject *, PyObject *,
120+
PyObject *, PyObject *, int, PyObject *);
121+
122+
PyAPI_FUNC(PyCodeObject *) PyCode_NewWithPosOnlyArgs(
123+
int, int, int, int, int, int, PyObject *, PyObject *,
124+
PyObject *, PyObject *, PyObject *, PyObject *,
125+
PyObject *, PyObject *, int, PyObject *);
126+
/* same as struct above */
127+
128+
/* Creates a new empty code object with the specified source location. */
129+
PyAPI_FUNC(PyCodeObject *)
130+
PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
131+
132+
/* Return the line number associated with the specified bytecode index
133+
in this code object. If you just need the line number of a frame,
134+
use PyFrame_GetLineNumber() instead. */
135+
PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
136+
137+
/* for internal use only */
138+
struct _opaque {
139+
int computed_line;
140+
const char *lo_next;
141+
const char *limit;
142+
};
143+
144+
typedef struct _line_offsets {
145+
int ar_start;
146+
int ar_end;
147+
int ar_line;
148+
struct _opaque opaque;
149+
} PyCodeAddressRange;
150+
151+
/* Update *bounds to describe the first and one-past-the-last instructions in the
152+
same line as lasti. Return the number of that line.
153+
*/
154+
PyAPI_FUNC(int) _PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds);
155+
156+
/* Create a comparable key used to compare constants taking in account the
157+
* object type. It is used to make sure types are not coerced (e.g., float and
158+
* complex) _and_ to distinguish 0.0 from -0.0 e.g. on IEEE platforms
159+
*
160+
* Return (type(obj), obj, ...): a tuple with variable size (at least 2 items)
161+
* depending on the type and the value. The type is the first item to not
162+
* compare bytes and str which can raise a BytesWarning exception. */
163+
PyAPI_FUNC(PyObject*) _PyCode_ConstantKey(PyObject *obj);
164+
165+
PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts,
166+
PyObject *names, PyObject *lnotab);
167+
168+
169+
PyAPI_FUNC(int) _PyCode_GetExtra(PyObject *code, Py_ssize_t index,
170+
void **extra);
171+
PyAPI_FUNC(int) _PyCode_SetExtra(PyObject *code, Py_ssize_t index,
172+
void *extra);
173+
174+
/** API for initializing the line number table. */
175+
int _PyCode_InitAddressRange(PyCodeObject* co, PyCodeAddressRange *bounds);
176+
177+
/** Out of process API for initializing the line number table. */
178+
void PyLineTable_InitAddressRange(const char *linetable, Py_ssize_t length, int firstlineno, PyCodeAddressRange *range);
179+
180+
/** API for traversing the line number table. */
181+
int PyLineTable_NextAddressRange(PyCodeAddressRange *range);
182+
int PyLineTable_PreviousAddressRange(PyCodeAddressRange *range);
183+
184+

0 commit comments

Comments
 (0)