| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | preserve | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  | #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 | 
					
						
							|  |  |  | #  include "pycore_gc.h"            // PyGC_Head
 | 
					
						
							|  |  |  | #  include "pycore_runtime.h"       // _Py_ID()
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  | PyDoc_STRVAR(code_new__doc__, | 
					
						
							|  |  |  | "code(argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize,\n" | 
					
						
							|  |  |  | "     flags, codestring, constants, names, varnames, filename, name,\n" | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  | "     qualname, firstlineno, linetable, exceptiontable, freevars=(),\n" | 
					
						
							|  |  |  | "     cellvars=(), /)\n" | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Create a code object.  Not for the faint of heart."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount, | 
					
						
							|  |  |  |               int kwonlyargcount, int nlocals, int stacksize, int flags, | 
					
						
							|  |  |  |               PyObject *code, PyObject *consts, PyObject *names, | 
					
						
							|  |  |  |               PyObject *varnames, PyObject *filename, PyObject *name, | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |               PyObject *qualname, int firstlineno, PyObject *linetable, | 
					
						
							|  |  |  |               PyObject *exceptiontable, PyObject *freevars, | 
					
						
							|  |  |  |               PyObject *cellvars); | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | code_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     int argcount; | 
					
						
							|  |  |  |     int posonlyargcount; | 
					
						
							|  |  |  |     int kwonlyargcount; | 
					
						
							|  |  |  |     int nlocals; | 
					
						
							|  |  |  |     int stacksize; | 
					
						
							|  |  |  |     int flags; | 
					
						
							|  |  |  |     PyObject *code; | 
					
						
							|  |  |  |     PyObject *consts; | 
					
						
							|  |  |  |     PyObject *names; | 
					
						
							|  |  |  |     PyObject *varnames; | 
					
						
							|  |  |  |     PyObject *filename; | 
					
						
							|  |  |  |     PyObject *name; | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |     PyObject *qualname; | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |     int firstlineno; | 
					
						
							| 
									
										
										
										
											2020-11-12 09:43:29 +00:00
										 |  |  |     PyObject *linetable; | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |     PyObject *exceptiontable; | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |     PyObject *freevars = NULL; | 
					
						
							|  |  |  |     PyObject *cellvars = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-12 13:27:50 +03:00
										 |  |  |     if ((type == &PyCode_Type || | 
					
						
							|  |  |  |          type->tp_init == PyCode_Type.tp_init) && | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |         !_PyArg_NoKeywords("code", kwargs)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     if (!_PyArg_CheckPositional("code", PyTuple_GET_SIZE(args), 16, 18)) { | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     argcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 0)); | 
					
						
							|  |  |  |     if (argcount == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     posonlyargcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 1)); | 
					
						
							|  |  |  |     if (posonlyargcount == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     kwonlyargcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 2)); | 
					
						
							|  |  |  |     if (kwonlyargcount == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     nlocals = _PyLong_AsInt(PyTuple_GET_ITEM(args, 3)); | 
					
						
							|  |  |  |     if (nlocals == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     stacksize = _PyLong_AsInt(PyTuple_GET_ITEM(args, 4)); | 
					
						
							|  |  |  |     if (stacksize == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     flags = _PyLong_AsInt(PyTuple_GET_ITEM(args, 5)); | 
					
						
							|  |  |  |     if (flags == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PyBytes_Check(PyTuple_GET_ITEM(args, 6))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 7", "bytes", PyTuple_GET_ITEM(args, 6)); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     code = PyTuple_GET_ITEM(args, 6); | 
					
						
							|  |  |  |     if (!PyTuple_Check(PyTuple_GET_ITEM(args, 7))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 8", "tuple", PyTuple_GET_ITEM(args, 7)); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     consts = PyTuple_GET_ITEM(args, 7); | 
					
						
							|  |  |  |     if (!PyTuple_Check(PyTuple_GET_ITEM(args, 8))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 9", "tuple", PyTuple_GET_ITEM(args, 8)); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     names = PyTuple_GET_ITEM(args, 8); | 
					
						
							|  |  |  |     if (!PyTuple_Check(PyTuple_GET_ITEM(args, 9))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 10", "tuple", PyTuple_GET_ITEM(args, 9)); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     varnames = PyTuple_GET_ITEM(args, 9); | 
					
						
							|  |  |  |     if (!PyUnicode_Check(PyTuple_GET_ITEM(args, 10))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 11", "str", PyTuple_GET_ITEM(args, 10)); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (PyUnicode_READY(PyTuple_GET_ITEM(args, 10)) == -1) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     filename = PyTuple_GET_ITEM(args, 10); | 
					
						
							|  |  |  |     if (!PyUnicode_Check(PyTuple_GET_ITEM(args, 11))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 12", "str", PyTuple_GET_ITEM(args, 11)); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (PyUnicode_READY(PyTuple_GET_ITEM(args, 11)) == -1) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     name = PyTuple_GET_ITEM(args, 11); | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |     if (!PyUnicode_Check(PyTuple_GET_ITEM(args, 12))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 13", "str", PyTuple_GET_ITEM(args, 12)); | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |     if (PyUnicode_READY(PyTuple_GET_ITEM(args, 12)) == -1) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     qualname = PyTuple_GET_ITEM(args, 12); | 
					
						
							|  |  |  |     firstlineno = _PyLong_AsInt(PyTuple_GET_ITEM(args, 13)); | 
					
						
							|  |  |  |     if (firstlineno == -1 && PyErr_Occurred()) { | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |     if (!PyBytes_Check(PyTuple_GET_ITEM(args, 14))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 15", "bytes", PyTuple_GET_ITEM(args, 14)); | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |     linetable = PyTuple_GET_ITEM(args, 14); | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     if (!PyBytes_Check(PyTuple_GET_ITEM(args, 15))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 16", "bytes", PyTuple_GET_ITEM(args, 15)); | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     exceptiontable = PyTuple_GET_ITEM(args, 15); | 
					
						
							|  |  |  |     if (PyTuple_GET_SIZE(args) < 17) { | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     if (!PyTuple_Check(PyTuple_GET_ITEM(args, 16))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 17", "tuple", PyTuple_GET_ITEM(args, 16)); | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     freevars = PyTuple_GET_ITEM(args, 16); | 
					
						
							|  |  |  |     if (PyTuple_GET_SIZE(args) < 18) { | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     if (!PyTuple_Check(PyTuple_GET_ITEM(args, 17))) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("code", "argument 18", "tuple", PyTuple_GET_ITEM(args, 17)); | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     cellvars = PyTuple_GET_ITEM(args, 17); | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     return_value = code_new_impl(type, argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize, flags, code, consts, names, varnames, filename, name, qualname, firstlineno, linetable, exceptiontable, freevars, cellvars); | 
					
						
							| 
									
										
										
										
											2020-07-10 10:12:04 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | PyDoc_STRVAR(code_replace__doc__, | 
					
						
							|  |  |  | "replace($self, /, *, co_argcount=-1, co_posonlyargcount=-1,\n" | 
					
						
							|  |  |  | "        co_kwonlyargcount=-1, co_nlocals=-1, co_stacksize=-1,\n" | 
					
						
							|  |  |  | "        co_flags=-1, co_firstlineno=-1, co_code=None, co_consts=None,\n" | 
					
						
							|  |  |  | "        co_names=None, co_varnames=None, co_freevars=None,\n" | 
					
						
							|  |  |  | "        co_cellvars=None, co_filename=None, co_name=None,\n" | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  | "        co_qualname=None, co_linetable=None, co_exceptiontable=None)\n" | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							| 
									
										
										
										
											2020-01-01 01:11:16 -05:00
										 |  |  | "Return a copy of the code object with new values for the specified fields."); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define CODE_REPLACE_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2022-05-03 20:25:41 +02:00
										 |  |  |     {"replace", _PyCFunction_CAST(code_replace), METH_FASTCALL|METH_KEYWORDS, code_replace__doc__}, | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | code_replace_impl(PyCodeObject *self, int co_argcount, | 
					
						
							|  |  |  |                   int co_posonlyargcount, int co_kwonlyargcount, | 
					
						
							|  |  |  |                   int co_nlocals, int co_stacksize, int co_flags, | 
					
						
							|  |  |  |                   int co_firstlineno, PyBytesObject *co_code, | 
					
						
							|  |  |  |                   PyObject *co_consts, PyObject *co_names, | 
					
						
							|  |  |  |                   PyObject *co_varnames, PyObject *co_freevars, | 
					
						
							|  |  |  |                   PyObject *co_cellvars, PyObject *co_filename, | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |                   PyObject *co_name, PyObject *co_qualname, | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |                   PyBytesObject *co_linetable, | 
					
						
							|  |  |  |                   PyBytesObject *co_exceptiontable); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | code_replace(PyCodeObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  |     #define NUM_KEYWORDS 18
 | 
					
						
							|  |  |  |     #if NUM_KEYWORDS == 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #  if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 | 
					
						
							|  |  |  |     #    define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
 | 
					
						
							|  |  |  |     #  else
 | 
					
						
							|  |  |  |     #    define KWTUPLE NULL
 | 
					
						
							|  |  |  |     #  endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #else  // NUM_KEYWORDS != 0
 | 
					
						
							|  |  |  |     #  if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static struct { | 
					
						
							|  |  |  |         PyGC_Head _this_is_not_used; | 
					
						
							|  |  |  |         PyObject_VAR_HEAD | 
					
						
							|  |  |  |         PyObject *ob_item[NUM_KEYWORDS]; | 
					
						
							|  |  |  |     } _kwtuple = { | 
					
						
							|  |  |  |         .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS) | 
					
						
							|  |  |  |         .ob_item = { &_Py_ID(co_argcount), &_Py_ID(co_posonlyargcount), &_Py_ID(co_kwonlyargcount), &_Py_ID(co_nlocals), &_Py_ID(co_stacksize), &_Py_ID(co_flags), &_Py_ID(co_firstlineno), &_Py_ID(co_code), &_Py_ID(co_consts), &_Py_ID(co_names), &_Py_ID(co_varnames), &_Py_ID(co_freevars), &_Py_ID(co_cellvars), &_Py_ID(co_filename), &_Py_ID(co_name), &_Py_ID(co_qualname), &_Py_ID(co_linetable), &_Py_ID(co_exceptiontable), }, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     #  define KWTUPLE (&_kwtuple.ob_base.ob_base)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #  else  // !Py_BUILD_CORE
 | 
					
						
							|  |  |  |     #    define KWTUPLE NULL
 | 
					
						
							|  |  |  |     #  endif  // !Py_BUILD_CORE
 | 
					
						
							|  |  |  |     #endif  // NUM_KEYWORDS != 0
 | 
					
						
							|  |  |  |     #undef NUM_KEYWORDS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     static const char * const _keywords[] = {"co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_qualname", "co_linetable", "co_exceptiontable", NULL}; | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  |     static _PyArg_Parser _parser = { | 
					
						
							|  |  |  |         .keywords = _keywords, | 
					
						
							|  |  |  |         .fname = "replace", | 
					
						
							|  |  |  |         .kwtuple = KWTUPLE, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     #undef KWTUPLE
 | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     PyObject *argsbuf[18]; | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |     Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0; | 
					
						
							|  |  |  |     int co_argcount = self->co_argcount; | 
					
						
							|  |  |  |     int co_posonlyargcount = self->co_posonlyargcount; | 
					
						
							|  |  |  |     int co_kwonlyargcount = self->co_kwonlyargcount; | 
					
						
							|  |  |  |     int co_nlocals = self->co_nlocals; | 
					
						
							|  |  |  |     int co_stacksize = self->co_stacksize; | 
					
						
							|  |  |  |     int co_flags = self->co_flags; | 
					
						
							|  |  |  |     int co_firstlineno = self->co_firstlineno; | 
					
						
							| 
									
										
										
										
											2022-03-21 04:11:17 -07:00
										 |  |  |     PyBytesObject *co_code = NULL; | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |     PyObject *co_consts = self->co_consts; | 
					
						
							|  |  |  |     PyObject *co_names = self->co_names; | 
					
						
							| 
									
										
										
										
											2022-03-21 04:11:17 -07:00
										 |  |  |     PyObject *co_varnames = NULL; | 
					
						
							|  |  |  |     PyObject *co_freevars = NULL; | 
					
						
							|  |  |  |     PyObject *co_cellvars = NULL; | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |     PyObject *co_filename = self->co_filename; | 
					
						
							|  |  |  |     PyObject *co_name = self->co_name; | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |     PyObject *co_qualname = self->co_qualname; | 
					
						
							| 
									
										
										
										
											2020-11-12 09:43:29 +00:00
										 |  |  |     PyBytesObject *co_linetable = (PyBytesObject *)self->co_linetable; | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |     PyBytesObject *co_exceptiontable = (PyBytesObject *)self->co_exceptiontable; | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 0, 0, argsbuf); | 
					
						
							|  |  |  |     if (!args) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!noptargs) { | 
					
						
							|  |  |  |         goto skip_optional_kwonly; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[0]) { | 
					
						
							|  |  |  |         co_argcount = _PyLong_AsInt(args[0]); | 
					
						
							|  |  |  |         if (co_argcount == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[1]) { | 
					
						
							|  |  |  |         co_posonlyargcount = _PyLong_AsInt(args[1]); | 
					
						
							|  |  |  |         if (co_posonlyargcount == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[2]) { | 
					
						
							|  |  |  |         co_kwonlyargcount = _PyLong_AsInt(args[2]); | 
					
						
							|  |  |  |         if (co_kwonlyargcount == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[3]) { | 
					
						
							|  |  |  |         co_nlocals = _PyLong_AsInt(args[3]); | 
					
						
							|  |  |  |         if (co_nlocals == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[4]) { | 
					
						
							|  |  |  |         co_stacksize = _PyLong_AsInt(args[4]); | 
					
						
							|  |  |  |         if (co_stacksize == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[5]) { | 
					
						
							|  |  |  |         co_flags = _PyLong_AsInt(args[5]); | 
					
						
							|  |  |  |         if (co_flags == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[6]) { | 
					
						
							|  |  |  |         co_firstlineno = _PyLong_AsInt(args[6]); | 
					
						
							|  |  |  |         if (co_firstlineno == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[7]) { | 
					
						
							|  |  |  |         if (!PyBytes_Check(args[7])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_code'", "bytes", args[7]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_code = (PyBytesObject *)args[7]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[8]) { | 
					
						
							|  |  |  |         if (!PyTuple_Check(args[8])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_consts'", "tuple", args[8]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_consts = args[8]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[9]) { | 
					
						
							|  |  |  |         if (!PyTuple_Check(args[9])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_names'", "tuple", args[9]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_names = args[9]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[10]) { | 
					
						
							|  |  |  |         if (!PyTuple_Check(args[10])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_varnames'", "tuple", args[10]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_varnames = args[10]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[11]) { | 
					
						
							|  |  |  |         if (!PyTuple_Check(args[11])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_freevars'", "tuple", args[11]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_freevars = args[11]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[12]) { | 
					
						
							|  |  |  |         if (!PyTuple_Check(args[12])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_cellvars'", "tuple", args[12]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_cellvars = args[12]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[13]) { | 
					
						
							|  |  |  |         if (!PyUnicode_Check(args[13])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_filename'", "str", args[13]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (PyUnicode_READY(args[13]) == -1) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_filename = args[13]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (args[14]) { | 
					
						
							|  |  |  |         if (!PyUnicode_Check(args[14])) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_name'", "str", args[14]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (PyUnicode_READY(args[14]) == -1) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         co_name = args[14]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |     if (args[15]) { | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |         if (!PyUnicode_Check(args[15])) { | 
					
						
							|  |  |  |             _PyArg_BadArgument("replace", "argument 'co_qualname'", "str", args[15]); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (PyUnicode_READY(args[15]) == -1) { | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |         co_qualname = args[15]; | 
					
						
							| 
									
										
										
										
											2021-05-07 15:19:19 +01:00
										 |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-07-02 15:10:11 +01:00
										 |  |  |     if (args[16]) { | 
					
						
							|  |  |  |         if (!PyBytes_Check(args[16])) { | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |             _PyArg_BadArgument("replace", "argument 'co_linetable'", "bytes", args[16]); | 
					
						
							| 
									
										
										
										
											2021-07-02 15:10:11 +01:00
										 |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-07 12:21:51 +01:00
										 |  |  |         co_linetable = (PyBytesObject *)args[16]; | 
					
						
							| 
									
										
										
										
											2021-07-02 15:10:11 +01:00
										 |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_kwonly; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     if (!PyBytes_Check(args[17])) { | 
					
						
							|  |  |  |         _PyArg_BadArgument("replace", "argument 'co_exceptiontable'", "bytes", args[17]); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     co_exceptiontable = (PyBytesObject *)args[17]; | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | skip_optional_kwonly: | 
					
						
							| 
									
										
										
										
											2022-04-21 16:10:37 +01:00
										 |  |  |     return_value = code_replace_impl(self, co_argcount, co_posonlyargcount, co_kwonlyargcount, co_nlocals, co_stacksize, co_flags, co_firstlineno, co_code, co_consts, co_names, co_varnames, co_freevars, co_cellvars, co_filename, co_name, co_qualname, co_linetable, co_exceptiontable); | 
					
						
							| 
									
										
										
										
											2019-05-24 23:57:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-06-07 12:22:26 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(code__varname_from_oparg__doc__, | 
					
						
							|  |  |  | "_varname_from_oparg($self, /, oparg)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "(internal-only) Return the local variable name for the given oparg.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "WARNING: this method is for internal use only and may change or go away."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CODE__VARNAME_FROM_OPARG_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2022-05-03 20:25:41 +02:00
										 |  |  |     {"_varname_from_oparg", _PyCFunction_CAST(code__varname_from_oparg), METH_FASTCALL|METH_KEYWORDS, code__varname_from_oparg__doc__}, | 
					
						
							| 
									
										
										
										
											2021-06-07 12:22:26 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | code__varname_from_oparg_impl(PyCodeObject *self, int oparg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | code__varname_from_oparg(PyCodeObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  |     #define NUM_KEYWORDS 1
 | 
					
						
							|  |  |  |     #if NUM_KEYWORDS == 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #  if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 | 
					
						
							|  |  |  |     #    define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
 | 
					
						
							|  |  |  |     #  else
 | 
					
						
							|  |  |  |     #    define KWTUPLE NULL
 | 
					
						
							|  |  |  |     #  endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #else  // NUM_KEYWORDS != 0
 | 
					
						
							|  |  |  |     #  if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static struct { | 
					
						
							|  |  |  |         PyGC_Head _this_is_not_used; | 
					
						
							|  |  |  |         PyObject_VAR_HEAD | 
					
						
							|  |  |  |         PyObject *ob_item[NUM_KEYWORDS]; | 
					
						
							|  |  |  |     } _kwtuple = { | 
					
						
							|  |  |  |         .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS) | 
					
						
							|  |  |  |         .ob_item = { &_Py_ID(oparg), }, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     #  define KWTUPLE (&_kwtuple.ob_base.ob_base)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #  else  // !Py_BUILD_CORE
 | 
					
						
							|  |  |  |     #    define KWTUPLE NULL
 | 
					
						
							|  |  |  |     #  endif  // !Py_BUILD_CORE
 | 
					
						
							|  |  |  |     #endif  // NUM_KEYWORDS != 0
 | 
					
						
							|  |  |  |     #undef NUM_KEYWORDS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 12:22:26 -06:00
										 |  |  |     static const char * const _keywords[] = {"oparg", NULL}; | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  |     static _PyArg_Parser _parser = { | 
					
						
							|  |  |  |         .keywords = _keywords, | 
					
						
							|  |  |  |         .fname = "_varname_from_oparg", | 
					
						
							|  |  |  |         .kwtuple = KWTUPLE, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     #undef KWTUPLE
 | 
					
						
							| 
									
										
										
										
											2021-06-07 12:22:26 -06:00
										 |  |  |     PyObject *argsbuf[1]; | 
					
						
							|  |  |  |     int oparg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf); | 
					
						
							|  |  |  |     if (!args) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     oparg = _PyLong_AsInt(args[0]); | 
					
						
							|  |  |  |     if (oparg == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return_value = code__varname_from_oparg_impl(self, oparg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-08-11 15:25:49 -06:00
										 |  |  | /*[clinic end generated code: output=5dec2deb4a909b1b input=a9049054013a1b77]*/ |