mirror of
https://github.com/python/cpython.git
synced 2024-11-21 21:09:37 +01:00
gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)
Argument Clinic now only includes pycore_gc.h if PyGC_Head is needed, and only includes pycore_runtime.h if _Py_ID() is needed. * Add 'condition' optional argument to Clinic.add_include(). * deprecate_keyword_use() includes pycore_runtime.h when using the _PyID() function. * Fix rendering of includes: comments start at the column 35. * Mark PC/clinic/_wmimodule.cpp.h and "Objects/stringlib/clinic/*.h.h" header files as generated in .gitattributes. Effects: * 42 header files generated by AC no longer include the internal C API, instead of 4 header files before. For example, Modules/clinic/_abc.c.h no longer includes the internal C API. * Fix _testclinic_depr.c.h: it now always includes pycore_runtime.h to get _Py_ID().
This commit is contained in:
parent
2bd960b579
commit
ad73674283
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -66,6 +66,8 @@ PCbuild/readme.txt dos
|
||||
[attr]generated linguist-generated=true diff=generated
|
||||
|
||||
**/clinic/*.c.h generated
|
||||
**/clinic/*.cpp.h generated
|
||||
**/clinic/*.h.h generated
|
||||
*_db.h generated
|
||||
Doc/data/stable_abi.dat generated
|
||||
Doc/library/token-list.inc generated
|
||||
|
@ -2673,12 +2673,6 @@ class ClinicExternalTest(TestCase):
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_VAR(func__doc__);
|
||||
|
||||
PyDoc_STRVAR(func__doc__,
|
||||
@ -2691,7 +2685,7 @@ class ClinicExternalTest(TestCase):
|
||||
|
||||
static PyObject *
|
||||
func(PyObject *module, PyObject *a)
|
||||
/*[clinic end generated code: output=56c09670e89a0d9a input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=3dde2d13002165b9 input=a9049054013a1b77]*/
|
||||
""")
|
||||
with os_helper.temp_dir() as tmp_dir:
|
||||
in_fn = os.path.join(tmp_dir, "test.c")
|
||||
|
9
Modules/_blake2/clinic/blake2b_impl.c.h
generated
9
Modules/_blake2/clinic/blake2b_impl.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
|
||||
PyDoc_STRVAR(py_blake2b_new__doc__,
|
||||
"blake2b(data=b\'\', /, *, digest_size=_blake2.blake2b.MAX_DIGEST_SIZE,\n"
|
||||
@ -277,4 +276,4 @@ _blake2_blake2b_hexdigest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _blake2_blake2b_hexdigest_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=48128782266b7b8e input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=2ad807e0c83d8c25 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_blake2/clinic/blake2s_impl.c.h
generated
9
Modules/_blake2/clinic/blake2s_impl.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
|
||||
PyDoc_STRVAR(py_blake2s_new__doc__,
|
||||
"blake2s(data=b\'\', /, *, digest_size=_blake2.blake2s.MAX_DIGEST_SIZE,\n"
|
||||
@ -277,4 +276,4 @@ _blake2_blake2s_hexdigest(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _blake2_blake2s_hexdigest_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=2188af9910a45497 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=90ca2b52b8c40785 input=a9049054013a1b77]*/
|
||||
|
8
Modules/_ctypes/clinic/callproc.c.h
generated
8
Modules/_ctypes/clinic/callproc.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(create_pointer_type__doc__,
|
||||
"POINTER($module, type, /)\n"
|
||||
"--\n"
|
||||
@ -35,4 +29,4 @@ PyDoc_STRVAR(create_pointer_inst__doc__,
|
||||
|
||||
#define CREATE_POINTER_INST_METHODDEF \
|
||||
{"pointer", (PyCFunction)create_pointer_inst, METH_O, create_pointer_inst__doc__},
|
||||
/*[clinic end generated code: output=ae26452a759ba56d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=51b311ea369e5adf input=a9049054013a1b77]*/
|
||||
|
7
Modules/_io/clinic/_iomodule.c.h
generated
7
Modules/_io/clinic/_iomodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_io_open__doc__,
|
||||
"open($module, /, file, mode=\'r\', buffering=-1, encoding=None,\n"
|
||||
" errors=None, newline=None, closefd=True, opener=None)\n"
|
||||
@ -404,4 +403,4 @@ _io_open_code(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObjec
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=a4ceb802f3a7243f input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=aaf96c8d9bd20abc input=a9049054013a1b77]*/
|
||||
|
9
Modules/_io/clinic/bufferedio.c.h
generated
9
Modules/_io/clinic/bufferedio.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_io__BufferedIOBase_readinto__doc__,
|
||||
"readinto($self, buffer, /)\n"
|
||||
@ -1099,4 +1098,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=768c3a3a3deabcb4 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=9e09091995ae02b0 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_io/clinic/bytesio.c.h
generated
9
Modules/_io/clinic/bytesio.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
|
||||
PyDoc_STRVAR(_io_BytesIO_readable__doc__,
|
||||
"readable($self, /)\n"
|
||||
@ -539,4 +538,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=6b1219bda0619e2a input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=8ab65edc03edbfe0 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_io/clinic/fileio.c.h
generated
9
Modules/_io/clinic/fileio.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
|
||||
PyDoc_STRVAR(_io_FileIO_close__doc__,
|
||||
"close($self, /)\n"
|
||||
@ -537,4 +536,4 @@ _io_FileIO_isatty(fileio *self, PyObject *Py_UNUSED(ignored))
|
||||
#ifndef _IO_FILEIO_TRUNCATE_METHODDEF
|
||||
#define _IO_FILEIO_TRUNCATE_METHODDEF
|
||||
#endif /* !defined(_IO_FILEIO_TRUNCATE_METHODDEF) */
|
||||
/*[clinic end generated code: output=3a3c6ed7e5e78063 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=238dd48819076434 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_io/clinic/iobase.c.h
generated
9
Modules/_io/clinic/iobase.c.h
generated
@ -2,12 +2,7 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
|
||||
PyDoc_STRVAR(_io__IOBase_seek__doc__,
|
||||
"seek($self, offset, whence=os.SEEK_SET, /)\n"
|
||||
@ -442,4 +437,4 @@ _io__RawIOBase_readall(PyObject *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _io__RawIOBase_readall_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=d96f5bfd72e6eafb input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=95e1633805d10294 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_io/clinic/stringio.c.h
generated
9
Modules/_io/clinic/stringio.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
|
||||
PyDoc_STRVAR(_io_StringIO_getvalue__doc__,
|
||||
"getvalue($self, /)\n"
|
||||
@ -368,4 +367,4 @@ _io_StringIO_seekable(stringio *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _io_StringIO_seekable_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=09d4056cc8c4aae4 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=57e86cd679344ee7 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_io/clinic/textio.c.h
generated
9
Modules/_io/clinic/textio.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
|
||||
PyDoc_STRVAR(_io__TextIOBase_detach__doc__,
|
||||
"detach($self, /)\n"
|
||||
@ -980,4 +979,4 @@ _io_TextIOWrapper_close(textio *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _io_TextIOWrapper_close_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=390af0e65a0d02c0 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=175e1723a462a722 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_io/clinic/winconsoleio.c.h
generated
9
Modules/_io/clinic/winconsoleio.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
|
||||
#if defined(HAVE_WINDOWS_CONSOLE_IO)
|
||||
|
||||
@ -466,4 +465,4 @@ _io__WindowsConsoleIO_isatty(winconsoleio *self, PyObject *Py_UNUSED(ignored))
|
||||
#ifndef _IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF
|
||||
#define _IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF
|
||||
#endif /* !defined(_IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF) */
|
||||
/*[clinic end generated code: output=0cdb16d95f1c7dac input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=7be51d48ddb7c8c8 input=a9049054013a1b77]*/
|
||||
|
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(MS_WINDOWS)
|
||||
|
||||
PyDoc_STRVAR(_multiprocessing_closesocket__doc__,
|
||||
@ -172,4 +166,4 @@ exit:
|
||||
#ifndef _MULTIPROCESSING_SEND_METHODDEF
|
||||
#define _MULTIPROCESSING_SEND_METHODDEF
|
||||
#endif /* !defined(_MULTIPROCESSING_SEND_METHODDEF) */
|
||||
/*[clinic end generated code: output=eb078dff6b6595ff input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=8b91c020d4353cc5 input=a9049054013a1b77]*/
|
||||
|
7
Modules/_multiprocessing/clinic/posixshmem.c.h
generated
7
Modules/_multiprocessing/clinic/posixshmem.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(HAVE_SHM_OPEN)
|
||||
|
||||
PyDoc_STRVAR(_posixshmem_shm_open__doc__,
|
||||
@ -166,4 +165,4 @@ exit:
|
||||
#ifndef _POSIXSHMEM_SHM_UNLINK_METHODDEF
|
||||
#define _POSIXSHMEM_SHM_UNLINK_METHODDEF
|
||||
#endif /* !defined(_POSIXSHMEM_SHM_UNLINK_METHODDEF) */
|
||||
/*[clinic end generated code: output=c022e2f7371fdece input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=2f356903a281d857 input=a9049054013a1b77]*/
|
||||
|
7
Modules/_multiprocessing/clinic/semaphore.c.h
generated
7
Modules/_multiprocessing/clinic/semaphore.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(HAVE_MP_SEMAPHORE) && defined(MS_WINDOWS)
|
||||
|
||||
PyDoc_STRVAR(_multiprocessing_SemLock_acquire__doc__,
|
||||
@ -542,4 +541,4 @@ exit:
|
||||
#ifndef _MULTIPROCESSING_SEMLOCK___EXIT___METHODDEF
|
||||
#define _MULTIPROCESSING_SEMLOCK___EXIT___METHODDEF
|
||||
#endif /* !defined(_MULTIPROCESSING_SEMLOCK___EXIT___METHODDEF) */
|
||||
/*[clinic end generated code: output=0fcadfdd8d6944be input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=e8ea65f8cba8e173 input=a9049054013a1b77]*/
|
||||
|
7
Modules/_sqlite/clinic/_sqlite3.connect.c.h
generated
7
Modules/_sqlite/clinic/_sqlite3.connect.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(pysqlite_connect__doc__,
|
||||
"connect($module, /, database, timeout=5.0, detect_types=0,\n"
|
||||
" isolation_level=\'\', check_same_thread=True,\n"
|
||||
@ -28,4 +27,4 @@ PyDoc_STRVAR(pysqlite_connect__doc__,
|
||||
|
||||
#define PYSQLITE_CONNECT_METHODDEF \
|
||||
{"connect", _PyCFunction_CAST(pysqlite_connect), METH_FASTCALL|METH_KEYWORDS, pysqlite_connect__doc__},
|
||||
/*[clinic end generated code: output=8d49736db880f09a input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=03bd99542e3aec9d input=a9049054013a1b77]*/
|
||||
|
8
Modules/_sqlite/clinic/blob.c.h
generated
8
Modules/_sqlite/clinic/blob.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(blob_close__doc__,
|
||||
"close($self, /)\n"
|
||||
"--\n"
|
||||
@ -219,4 +213,4 @@ blob_exit(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=1783b816ccc3bb75 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=8bfd79ab12ac5385 input=a9049054013a1b77]*/
|
||||
|
7
Modules/_sqlite/clinic/connection.c.h
generated
7
Modules/_sqlite/clinic/connection.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
static int
|
||||
pysqlite_connection_init_impl(pysqlite_Connection *self, PyObject *database,
|
||||
double timeout, int detect_types,
|
||||
@ -1822,4 +1821,4 @@ exit:
|
||||
#ifndef DESERIALIZE_METHODDEF
|
||||
#define DESERIALIZE_METHODDEF
|
||||
#endif /* !defined(DESERIALIZE_METHODDEF) */
|
||||
/*[clinic end generated code: output=f06b254bc5c2bcaf input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=166bf41ad5ca1655 input=a9049054013a1b77]*/
|
||||
|
7
Modules/_sqlite/clinic/cursor.c.h
generated
7
Modules/_sqlite/clinic/cursor.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
static int
|
||||
pysqlite_cursor_init_impl(pysqlite_Cursor *self,
|
||||
pysqlite_Connection *connection);
|
||||
@ -313,4 +312,4 @@ pysqlite_cursor_close(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return pysqlite_cursor_close_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=b56b3ddb3b6df8c6 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=0c52a9cf54d00543 input=a9049054013a1b77]*/
|
||||
|
7
Modules/_sqlite/clinic/module.c.h
generated
7
Modules/_sqlite/clinic/module.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(pysqlite_complete_statement__doc__,
|
||||
"complete_statement($module, /, statement)\n"
|
||||
"--\n"
|
||||
@ -208,4 +207,4 @@ skip_optional:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=c1d450089867b4bf input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=a14893a7c2eead5e input=a9049054013a1b77]*/
|
||||
|
8
Modules/_sqlite/clinic/row.c.h
generated
8
Modules/_sqlite/clinic/row.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
static PyObject *
|
||||
pysqlite_row_new_impl(PyTypeObject *type, pysqlite_Cursor *cursor,
|
||||
PyObject *data);
|
||||
@ -60,4 +54,4 @@ pysqlite_row_keys(pysqlite_Row *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return pysqlite_row_keys_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=157b31ac3f6af1ba input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=972487d535d2e7d5 input=a9049054013a1b77]*/
|
||||
|
9
Modules/_sre/clinic/sre.c.h
generated
9
Modules/_sre/clinic/sre.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_sre_getcodesize__doc__,
|
||||
"getcodesize($module, /)\n"
|
||||
@ -1461,4 +1460,4 @@ _sre_SRE_Scanner_search(ScannerObject *self, PyTypeObject *cls, PyObject *const
|
||||
}
|
||||
return _sre_SRE_Scanner_search_impl(self, cls);
|
||||
}
|
||||
/*[clinic end generated code: output=b8cf77f05e44d08c input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=46d83927cbafa93a input=a9049054013a1b77]*/
|
||||
|
7
Modules/_ssl/clinic/cert.c.h
generated
7
Modules/_ssl/clinic/cert.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_ssl_Certificate_public_bytes__doc__,
|
||||
"public_bytes($self, /, format=Encoding.PEM)\n"
|
||||
"--\n"
|
||||
@ -86,4 +85,4 @@ _ssl_Certificate_get_info(PySSLCertificate *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _ssl_Certificate_get_info_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=72e2bb139c64546c input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=8e438b54fbebd53e input=a9049054013a1b77]*/
|
||||
|
7
Modules/_testcapi/clinic/exceptions.c.h
generated
7
Modules/_testcapi/clinic/exceptions.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_testcapi_err_set_raised__doc__,
|
||||
"err_set_raised($module, exception, /)\n"
|
||||
"--\n"
|
||||
@ -488,4 +487,4 @@ _testcapi_unstable_exc_prep_reraise_star(PyObject *module, PyObject *const *args
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=6c4b7ad1cb1e0153 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=8f273949da28ffb5 input=a9049054013a1b77]*/
|
||||
|
8
Modules/_testcapi/clinic/float.c.h
generated
8
Modules/_testcapi/clinic/float.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_testcapi_float_pack__doc__,
|
||||
"float_pack($module, size, d, le, /)\n"
|
||||
"--\n"
|
||||
@ -85,4 +79,4 @@ _testcapi_float_unpack(PyObject *module, PyObject *const *args, Py_ssize_t nargs
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=de6879d0f4987d79 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=50146051f1341cce input=a9049054013a1b77]*/
|
||||
|
8
Modules/_testcapi/clinic/long.c.h
generated
8
Modules/_testcapi/clinic/long.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_testcapi_test_long_api__doc__,
|
||||
"test_long_api($module, /)\n"
|
||||
"--\n"
|
||||
@ -171,4 +165,4 @@ PyDoc_STRVAR(_testcapi_PyLong_AsInt__doc__,
|
||||
|
||||
#define _TESTCAPI_PYLONG_ASINT_METHODDEF \
|
||||
{"PyLong_AsInt", (PyCFunction)_testcapi_PyLong_AsInt, METH_O, _testcapi_PyLong_AsInt__doc__},
|
||||
/*[clinic end generated code: output=1631a18f1193486a input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=31267ab2dd90aa1d input=a9049054013a1b77]*/
|
||||
|
8
Modules/_testcapi/clinic/vectorcall.c.h
generated
8
Modules/_testcapi/clinic/vectorcall.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_testcapi_pyobject_fastcalldict__doc__,
|
||||
"pyobject_fastcalldict($module, func, func_args, kwargs, /)\n"
|
||||
"--\n"
|
||||
@ -210,4 +204,4 @@ _testcapi_has_vectorcall_flag(PyObject *module, PyObject *arg)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=beaf6beac3d13c25 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=0667266b825ec9ec input=a9049054013a1b77]*/
|
||||
|
8
Modules/_testcapi/clinic/watchers.c.h
generated
8
Modules/_testcapi/clinic/watchers.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_testcapi_watch_dict__doc__,
|
||||
"watch_dict($module, watcher_id, dict, /)\n"
|
||||
"--\n"
|
||||
@ -195,4 +189,4 @@ _testcapi_set_func_kwdefaults_via_capi(PyObject *module, PyObject *const *args,
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=b7564a84c5815b46 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=5ad5771d6b29dfb9 input=a9049054013a1b77]*/
|
||||
|
7
Modules/cjkcodecs/clinic/multibytecodec.c.h
generated
7
Modules/cjkcodecs/clinic/multibytecodec.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_multibytecodec_MultibyteCodec_encode__doc__,
|
||||
"encode($self, /, input, errors=None)\n"
|
||||
"--\n"
|
||||
@ -690,4 +689,4 @@ PyDoc_STRVAR(_multibytecodec___create_codec__doc__,
|
||||
|
||||
#define _MULTIBYTECODEC___CREATE_CODEC_METHODDEF \
|
||||
{"__create_codec", (PyCFunction)_multibytecodec___create_codec, METH_O, _multibytecodec___create_codec__doc__},
|
||||
/*[clinic end generated code: output=5f0e8dacddb0ac76 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=1ee928e7a85e9d34 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_abc.c.h
generated
8
Modules/clinic/_abc.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_abc__reset_registry__doc__,
|
||||
"_reset_registry($module, self, /)\n"
|
||||
"--\n"
|
||||
@ -165,4 +159,4 @@ _abc_get_cache_token(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _abc_get_cache_token_impl(module);
|
||||
}
|
||||
/*[clinic end generated code: output=c2e69611a495c98d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=babb3ce445fa9b21 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_asynciomodule.c.h
generated
7
Modules/clinic/_asynciomodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_asyncio_Future___init____doc__,
|
||||
"Future(*, loop=None)\n"
|
||||
"--\n"
|
||||
@ -1487,4 +1486,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=6b0e283177b07639 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=1b7658bfab7024f3 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_bisectmodule.c.h
generated
9
Modules/clinic/_bisectmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_bisect_bisect_right__doc__,
|
||||
"bisect_right($module, /, a, x, lo=0, hi=None, *, key=None)\n"
|
||||
@ -434,4 +433,4 @@ skip_optional_kwonly:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=839fdddeacdc2ecb input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=43ece163c3e972df input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_bz2module.c.h
generated
9
Modules/clinic/_bz2module.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_bz2_BZ2Compressor_compress__doc__,
|
||||
"compress($self, data, /)\n"
|
||||
@ -242,4 +241,4 @@ _bz2_BZ2Decompressor(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=40706688f92642b4 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=3dfc8436fa8eaefb input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_codecsmodule.c.h
generated
7
Modules/clinic/_codecsmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_codecs_register__doc__,
|
||||
"register($module, search_function, /)\n"
|
||||
"--\n"
|
||||
@ -2818,4 +2817,4 @@ exit:
|
||||
#ifndef _CODECS_CODE_PAGE_ENCODE_METHODDEF
|
||||
#define _CODECS_CODE_PAGE_ENCODE_METHODDEF
|
||||
#endif /* !defined(_CODECS_CODE_PAGE_ENCODE_METHODDEF) */
|
||||
/*[clinic end generated code: output=6d9bc20c8dd36134 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=3473564544f10403 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_collectionsmodule.c.h
generated
9
Modules/clinic/_collectionsmodule.c.h
generated
@ -2,12 +2,7 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_collections__count_elements__doc__,
|
||||
"_count_elements($module, mapping, iterable, /)\n"
|
||||
@ -76,4 +71,4 @@ tuplegetter_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=d83188040656ad7c input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=b01ddb9fdecc4a2d input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_contextvarsmodule.c.h
generated
8
Modules/clinic/_contextvarsmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_contextvars_copy_context__doc__,
|
||||
"copy_context($module, /)\n"
|
||||
"--\n"
|
||||
@ -24,4 +18,4 @@ _contextvars_copy_context(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _contextvars_copy_context_impl(module);
|
||||
}
|
||||
/*[clinic end generated code: output=1736c27450823e70 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=26e07024451baf52 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_csv.c.h
generated
7
Modules/clinic/_csv.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_csv_list_dialects__doc__,
|
||||
"list_dialects($module, /)\n"
|
||||
"--\n"
|
||||
@ -206,4 +205,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=94374e41eb2806ee input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=4704d708f5745e91 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_curses_panel.c.h
generated
8
Modules/clinic/_curses_panel.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_curses_panel_panel_bottom__doc__,
|
||||
"bottom($self, /)\n"
|
||||
"--\n"
|
||||
@ -422,4 +416,4 @@ _curses_panel_update_panels(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _curses_panel_update_panels_impl(module);
|
||||
}
|
||||
/*[clinic end generated code: output=cb76cb1d5040f387 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=dd302cb9afc42f40 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_cursesmodule.c.h
generated
7
Modules/clinic/_cursesmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_curses_window_addch__doc__,
|
||||
"addch([y, x,] ch, [attr=_curses.A_NORMAL])\n"
|
||||
"Paint the character.\n"
|
||||
@ -4313,4 +4312,4 @@ _curses_has_extended_color_support(PyObject *module, PyObject *Py_UNUSED(ignored
|
||||
#ifndef _CURSES_USE_DEFAULT_COLORS_METHODDEF
|
||||
#define _CURSES_USE_DEFAULT_COLORS_METHODDEF
|
||||
#endif /* !defined(_CURSES_USE_DEFAULT_COLORS_METHODDEF) */
|
||||
/*[clinic end generated code: output=cff0e570de65d9b8 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=839faafb638935ea input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_datetimemodule.c.h
generated
7
Modules/clinic/_datetimemodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(datetime_date_fromtimestamp__doc__,
|
||||
"fromtimestamp($type, timestamp, /)\n"
|
||||
"--\n"
|
||||
@ -146,4 +145,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=720c99f24a9aa41c input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=e422c25b1c28f38b input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_dbmmodule.c.h
generated
8
Modules/clinic/_dbmmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_dbm_dbm_close__doc__,
|
||||
"close($self, /)\n"
|
||||
"--\n"
|
||||
@ -222,4 +216,4 @@ skip_optional:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=f1bf74536f201669 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=972d221f9da819d3 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_elementtree.c.h
generated
9
Modules/clinic/_elementtree.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_elementtree_Element_append__doc__,
|
||||
"append($self, subelement, /)\n"
|
||||
@ -1219,4 +1218,4 @@ skip_optional:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=0a34620406b95eb0 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=20d1869da79a43d7 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_functoolsmodule.c.h
generated
7
Modules/clinic/_functoolsmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_functools_cmp_to_key__doc__,
|
||||
"cmp_to_key($module, /, mycmp)\n"
|
||||
"--\n"
|
||||
@ -101,4 +100,4 @@ _functools__lru_cache_wrapper_cache_clear(PyObject *self, PyObject *Py_UNUSED(ig
|
||||
{
|
||||
return _functools__lru_cache_wrapper_cache_clear_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=7e7f3bcf9ed61f23 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=de9cf85e85167f43 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_gdbmmodule.c.h
generated
8
Modules/clinic/_gdbmmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_gdbm_gdbm_get__doc__,
|
||||
"get($self, key, default=None, /)\n"
|
||||
"--\n"
|
||||
@ -344,4 +338,4 @@ skip_optional:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=cf48d9f76fdd62b9 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=84f30c7fff0eadac input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_hashopenssl.c.h
generated
9
Modules/clinic/_hashopenssl.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(EVP_copy__doc__,
|
||||
"copy($self, /)\n"
|
||||
@ -1852,4 +1851,4 @@ exit:
|
||||
#ifndef _HASHLIB_SCRYPT_METHODDEF
|
||||
#define _HASHLIB_SCRYPT_METHODDEF
|
||||
#endif /* !defined(_HASHLIB_SCRYPT_METHODDEF) */
|
||||
/*[clinic end generated code: output=cfad8d5e904a4917 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=75413752099f2dec input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_heapqmodule.c.h
generated
8
Modules/clinic/_heapqmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_heapq_heappush__doc__,
|
||||
"heappush($module, heap, item, /)\n"
|
||||
"--\n"
|
||||
@ -271,4 +265,4 @@ _heapq__heapify_max(PyObject *module, PyObject *arg)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=29e99a48c57f82bb input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=9a22715a8bf0c91d input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_localemodule.c.h
generated
8
Modules/clinic/_localemodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_locale_setlocale__doc__,
|
||||
"setlocale($module, category, locale=<unrepresentable>, /)\n"
|
||||
"--\n"
|
||||
@ -599,4 +593,4 @@ _locale_getencoding(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
#ifndef _LOCALE_BIND_TEXTDOMAIN_CODESET_METHODDEF
|
||||
#define _LOCALE_BIND_TEXTDOMAIN_CODESET_METHODDEF
|
||||
#endif /* !defined(_LOCALE_BIND_TEXTDOMAIN_CODESET_METHODDEF) */
|
||||
/*[clinic end generated code: output=119644f17919234d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=3abe7fade999eff6 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_lsprof.c.h
generated
8
Modules/clinic/_lsprof.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_lsprof_Profiler_getstats__doc__,
|
||||
"getstats($self, /)\n"
|
||||
"--\n"
|
||||
@ -51,4 +45,4 @@ _lsprof_Profiler_getstats(ProfilerObject *self, PyTypeObject *cls, PyObject *con
|
||||
}
|
||||
return _lsprof_Profiler_getstats_impl(self, cls);
|
||||
}
|
||||
/*[clinic end generated code: output=7425d3481349629a input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=0615a53cce828f06 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_lzmamodule.c.h
generated
9
Modules/clinic/_lzmamodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_lzma_LZMACompressor_compress__doc__,
|
||||
"compress($self, data, /)\n"
|
||||
@ -339,4 +338,4 @@ exit:
|
||||
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=f1a001f5f489c372 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=eadc9ee7a11a06f5 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_opcode.c.h
generated
7
Modules/clinic/_opcode.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_opcode_stack_effect__doc__,
|
||||
"stack_effect($module, opcode, oparg=None, /, *, jump=None)\n"
|
||||
"--\n"
|
||||
@ -668,4 +667,4 @@ _opcode_get_intrinsic2_descs(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _opcode_get_intrinsic2_descs_impl(module);
|
||||
}
|
||||
/*[clinic end generated code: output=ce89aee80dd825d2 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=d608239a4c7a05a1 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_operator.c.h
generated
9
Modules/clinic/_operator.c.h
generated
@ -2,12 +2,7 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_operator_truth__doc__,
|
||||
"truth($module, a, /)\n"
|
||||
@ -1493,4 +1488,4 @@ _operator__compare_digest(PyObject *module, PyObject *const *args, Py_ssize_t na
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=72bc63a775937245 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=9658aca50a9ad991 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_pickle.c.h
generated
7
Modules/clinic/_pickle.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_pickle_Pickler_clear_memo__doc__,
|
||||
"clear_memo($self, /)\n"
|
||||
"--\n"
|
||||
@ -1034,4 +1033,4 @@ skip_optional_kwonly:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=a0e04b85e7bae626 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=57c209a12264146d input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_posixsubprocess.c.h
generated
8
Modules/clinic/_posixsubprocess.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(subprocess_fork_exec__doc__,
|
||||
"fork_exec($module, args, executable_list, close_fds, pass_fds, cwd,\n"
|
||||
" env, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite,\n"
|
||||
@ -159,4 +153,4 @@ subprocess_fork_exec(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=be0e9b5d8c0217fa input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=a83b11467169b97b input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_queuemodule.c.h
generated
7
Modules/clinic/_queuemodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(simplequeue_new__doc__,
|
||||
"SimpleQueue()\n"
|
||||
"--\n"
|
||||
@ -331,4 +330,4 @@ _queue_SimpleQueue_qsize(simplequeueobject *self, PyObject *Py_UNUSED(ignored))
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=9a72a8d1b5767f6a input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=5c326e4c1f2a1ad7 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_randommodule.c.h
generated
8
Modules/clinic/_randommodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_random_Random_random__doc__,
|
||||
"random($self, /)\n"
|
||||
"--\n"
|
||||
@ -115,4 +109,4 @@ _random_Random_getrandbits(RandomObject *self, PyObject *arg)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=3feabc783b317d0d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=5e7e05d756a7e1c7 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_ssl.c.h
generated
9
Modules/clinic/_ssl.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(_ssl__SSLSocket_do_handshake__doc__,
|
||||
"do_handshake($self, /)\n"
|
||||
@ -1543,4 +1542,4 @@ exit:
|
||||
#ifndef _SSL_ENUM_CRLS_METHODDEF
|
||||
#define _SSL_ENUM_CRLS_METHODDEF
|
||||
#endif /* !defined(_SSL_ENUM_CRLS_METHODDEF) */
|
||||
/*[clinic end generated code: output=6e2eb86330f3f9b8 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=a47d575abe0aceb6 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_statisticsmodule.c.h
generated
8
Modules/clinic/_statisticsmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_statistics__normal_dist_inv_cdf__doc__,
|
||||
"_normal_dist_inv_cdf($module, p, mu, sigma, /)\n"
|
||||
"--\n"
|
||||
@ -71,4 +65,4 @@ _statistics__normal_dist_inv_cdf(PyObject *module, PyObject *const *args, Py_ssi
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=6899dc752cc6b457 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=b807a8243e7801e6 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_struct.c.h
generated
9
Modules/clinic/_struct.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(Struct__doc__,
|
||||
"Struct(format)\n"
|
||||
@ -452,4 +451,4 @@ exit:
|
||||
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=9b48aeaa86898ec5 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=5c1bc384ff87df1f input=a9049054013a1b77]*/
|
||||
|
11
Modules/clinic/_testclinic.c.h
generated
11
Modules/clinic/_testclinic.c.h
generated
@ -3,12 +3,11 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedShort_Converter()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedShort_Converter()
|
||||
#include "pycore_runtime.h" // _Py_ID()
|
||||
|
||||
PyDoc_STRVAR(test_empty_function__doc__,
|
||||
"test_empty_function($module, /)\n"
|
||||
@ -3071,4 +3070,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=a652e6b1787d3346 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=c2a69a08ffdfc466 input=a9049054013a1b77]*/
|
||||
|
11
Modules/clinic/_testclinic_depr.c.h
generated
11
Modules/clinic/_testclinic_depr.c.h
generated
@ -3,12 +3,11 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedShort_Converter()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedShort_Converter()
|
||||
#include "pycore_runtime.h" // _Py_ID()
|
||||
|
||||
PyDoc_STRVAR(depr_star_new__doc__,
|
||||
"DeprStarNew(a=None)\n"
|
||||
@ -2393,4 +2392,4 @@ depr_multi(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=464aeba97e482f5c input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=689b1e2d0872e413 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_testinternalcapi.c.h
generated
7
Modules/clinic/_testinternalcapi.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_testinternalcapi_compiler_cleandoc__doc__,
|
||||
"compiler_cleandoc($module, /, doc)\n"
|
||||
"--\n"
|
||||
@ -265,4 +264,4 @@ _testinternalcapi_assemble_code_object(PyObject *module, PyObject *const *args,
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=1ce6e2257e95a853 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=cba1c94ff4015b82 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_testmultiphase.c.h
generated
7
Modules/clinic/_testmultiphase.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_testmultiphase_StateAccessType_get_defining_module__doc__,
|
||||
"get_defining_module($self, /)\n"
|
||||
"--\n"
|
||||
@ -162,4 +161,4 @@ _testmultiphase_StateAccessType_get_count(StateAccessTypeObject *self, PyTypeObj
|
||||
}
|
||||
return _testmultiphase_StateAccessType_get_count_impl(self, cls);
|
||||
}
|
||||
/*[clinic end generated code: output=6f8db3983c5312a0 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=db1fdd15244ee59c input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_tkinter.c.h
generated
8
Modules/clinic/_tkinter.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_tkinter_tkapp_eval__doc__,
|
||||
"eval($self, script, /)\n"
|
||||
"--\n"
|
||||
@ -865,4 +859,4 @@ exit:
|
||||
#ifndef _TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF
|
||||
#define _TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF
|
||||
#endif /* !defined(_TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF) */
|
||||
/*[clinic end generated code: output=2cdb2fd0ce66ebe5 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=bcd9cdc8f6bdcfae input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_tracemalloc.c.h
generated
8
Modules/clinic/_tracemalloc.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_tracemalloc_is_tracing__doc__,
|
||||
"is_tracing($module, /)\n"
|
||||
"--\n"
|
||||
@ -218,4 +212,4 @@ _tracemalloc_reset_peak(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return _tracemalloc_reset_peak_impl(module);
|
||||
}
|
||||
/*[clinic end generated code: output=98a42e95af7eaf09 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=ad7d1fae89f2bdaa input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_typingmodule.c.h
generated
8
Modules/clinic/_typingmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_typing__idfunc__doc__,
|
||||
"_idfunc($module, x, /)\n"
|
||||
"--\n"
|
||||
@ -15,4 +9,4 @@ PyDoc_STRVAR(_typing__idfunc__doc__,
|
||||
|
||||
#define _TYPING__IDFUNC_METHODDEF \
|
||||
{"_idfunc", (PyCFunction)_typing__idfunc, METH_O, _typing__idfunc__doc__},
|
||||
/*[clinic end generated code: output=97457fda45072c7d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=e7ea2a3cb7ab301a input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/_weakref.c.h
generated
8
Modules/clinic/_weakref.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_weakref_getweakrefcount__doc__,
|
||||
"getweakrefcount($module, object, /)\n"
|
||||
"--\n"
|
||||
@ -116,4 +110,4 @@ skip_optional:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=28265e89d583273d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=f4be6b8177fbceb8 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/_winapi.c.h
generated
9
Modules/clinic/_winapi.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_long.h" // _PyLong_Size_t_Converter()
|
||||
#include "pycore_long.h" // _PyLong_Size_t_Converter()
|
||||
|
||||
PyDoc_STRVAR(_winapi_Overlapped_GetOverlappedResult__doc__,
|
||||
"GetOverlappedResult($self, wait, /)\n"
|
||||
@ -1479,4 +1478,4 @@ exit:
|
||||
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=c7e08927e163ef13 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=6df38b5eb93f2e5a input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/_zoneinfo.c.h
generated
7
Modules/clinic/_zoneinfo.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(zoneinfo_ZoneInfo_from_file__doc__,
|
||||
"from_file($type, file_obj, /, key=None)\n"
|
||||
"--\n"
|
||||
@ -372,4 +371,4 @@ zoneinfo_ZoneInfo__unpickle(PyTypeObject *type, PyTypeObject *cls, PyObject *con
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=54051388dfc408af input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=a5384f79d49a593b input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/arraymodule.c.h
generated
9
Modules/clinic/arraymodule.c.h
generated
@ -2,12 +2,7 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(array_array___copy____doc__,
|
||||
"__copy__($self, /)\n"
|
||||
@ -675,4 +670,4 @@ PyDoc_STRVAR(array_arrayiterator___setstate____doc__,
|
||||
|
||||
#define ARRAY_ARRAYITERATOR___SETSTATE___METHODDEF \
|
||||
{"__setstate__", (PyCFunction)array_arrayiterator___setstate__, METH_O, array_arrayiterator___setstate____doc__},
|
||||
/*[clinic end generated code: output=ab24c7a40a41c2e1 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=8595b1906b5a6552 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/binascii.c.h
generated
7
Modules/clinic/binascii.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(binascii_a2b_uu__doc__,
|
||||
"a2b_uu($module, data, /)\n"
|
||||
"--\n"
|
||||
@ -795,4 +794,4 @@ exit:
|
||||
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=bf950ef45a10928d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=acc9419209dfd568 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/cmathmodule.c.h
generated
7
Modules/clinic/cmathmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(cmath_acos__doc__,
|
||||
"acos($module, z, /)\n"
|
||||
"--\n"
|
||||
@ -982,4 +981,4 @@ skip_optional_kwonly:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=87f609786ef270cd input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=96a5c4ae198dd5bf input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/fcntlmodule.c.h
generated
9
Modules/clinic/fcntlmodule.c.h
generated
@ -2,12 +2,7 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
|
||||
PyDoc_STRVAR(fcntl_fcntl__doc__,
|
||||
"fcntl($module, fd, cmd, arg=0, /)\n"
|
||||
@ -250,4 +245,4 @@ skip_optional:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=5f096e8731fa38be input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=4d4fac195494faec input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/gcmodule.c.h
generated
9
Modules/clinic/gcmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
#include "pycore_abstract.h" // _Py_convert_optional_to_ssize_t()
|
||||
|
||||
PyDoc_STRVAR(gc_enable__doc__,
|
||||
"enable($module, /)\n"
|
||||
@ -425,4 +424,4 @@ gc_get_freeze_count(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=fe89ce0b90a1067d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=63093e7724b94a37 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/grpmodule.c.h
generated
7
Modules/clinic/grpmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(grp_getgrgid__doc__,
|
||||
"getgrgid($module, /, id)\n"
|
||||
"--\n"
|
||||
@ -146,4 +145,4 @@ grp_getgrall(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return grp_getgrall_impl(module);
|
||||
}
|
||||
/*[clinic end generated code: output=e685227ed5d9be9f input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=d4bdad9b26fb8558 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/itertoolsmodule.c.h
generated
9
Modules/clinic/itertoolsmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(batched_new__doc__,
|
||||
"batched(iterable, n)\n"
|
||||
@ -914,4 +913,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=20999801c7349d2c input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=95bb863274717bd9 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/mathmodule.c.h
generated
7
Modules/clinic/mathmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(math_ceil__doc__,
|
||||
"ceil($module, x, /)\n"
|
||||
"--\n"
|
||||
@ -950,4 +949,4 @@ math_ulp(PyObject *module, PyObject *arg)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=91a0357265a2a553 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=da62cea7eb3dc8bc input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/md5module.c.h
generated
7
Modules/clinic/md5module.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(MD5Type_copy__doc__,
|
||||
"copy($self, /)\n"
|
||||
"--\n"
|
||||
@ -148,4 +147,4 @@ skip_optional_kwonly:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=b4924c9905cc9f34 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=943d42b9d17d9a5b input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/overlapped.c.h
generated
9
Modules/clinic/overlapped.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
|
||||
PyDoc_STRVAR(_overlapped_CreateIoCompletionPort__doc__,
|
||||
"CreateIoCompletionPort($module, handle, port, key, concurrency, /)\n"
|
||||
@ -1263,4 +1262,4 @@ exit:
|
||||
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=994ad727b827ff87 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=31bcc780209593a2 input=a9049054013a1b77]*/
|
||||
|
13
Modules/clinic/posixmodule.c.h
generated
13
Modules/clinic/posixmodule.c.h
generated
@ -3,13 +3,12 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedInt_Converter()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedInt_Converter()
|
||||
|
||||
PyDoc_STRVAR(os_stat__doc__,
|
||||
"stat($module, /, path, *, dir_fd=None, follow_symlinks=True)\n"
|
||||
@ -11993,4 +11992,4 @@ exit:
|
||||
#ifndef OS_WAITSTATUS_TO_EXITCODE_METHODDEF
|
||||
#define OS_WAITSTATUS_TO_EXITCODE_METHODDEF
|
||||
#endif /* !defined(OS_WAITSTATUS_TO_EXITCODE_METHODDEF) */
|
||||
/*[clinic end generated code: output=1b34619e5f65adc2 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=30c63cb556431cea input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/pwdmodule.c.h
generated
8
Modules/clinic/pwdmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(pwd_getpwuid__doc__,
|
||||
"getpwuid($module, uidobj, /)\n"
|
||||
"--\n"
|
||||
@ -77,4 +71,4 @@ pwd_getpwall(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
#ifndef PWD_GETPWALL_METHODDEF
|
||||
#define PWD_GETPWALL_METHODDEF
|
||||
#endif /* !defined(PWD_GETPWALL_METHODDEF) */
|
||||
/*[clinic end generated code: output=1edf1e26cd2762db input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=211c7a2516899b91 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/pyexpat.c.h
generated
7
Modules/clinic/pyexpat.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(pyexpat_xmlparser_Parse__doc__,
|
||||
"Parse($self, data, isfinal=False, /)\n"
|
||||
"--\n"
|
||||
@ -498,4 +497,4 @@ exit:
|
||||
#ifndef PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF
|
||||
#define PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF
|
||||
#endif /* !defined(PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF) */
|
||||
/*[clinic end generated code: output=6b30852bfc778208 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=ac398d94833e802d input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/readline.c.h
generated
8
Modules/clinic/readline.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(readline_parse_and_bind__doc__,
|
||||
"parse_and_bind($module, string, /)\n"
|
||||
"--\n"
|
||||
@ -688,4 +682,4 @@ readline_redisplay(PyObject *module, PyObject *Py_UNUSED(ignored))
|
||||
#ifndef READLINE_CLEAR_HISTORY_METHODDEF
|
||||
#define READLINE_CLEAR_HISTORY_METHODDEF
|
||||
#endif /* !defined(READLINE_CLEAR_HISTORY_METHODDEF) */
|
||||
/*[clinic end generated code: output=2c9c5709b3e00c8b input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=790ed2ba01babb60 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/resource.c.h
generated
8
Modules/clinic/resource.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(HAVE_GETRUSAGE)
|
||||
|
||||
PyDoc_STRVAR(resource_getrusage__doc__,
|
||||
@ -178,4 +172,4 @@ exit:
|
||||
#ifndef RESOURCE_PRLIMIT_METHODDEF
|
||||
#define RESOURCE_PRLIMIT_METHODDEF
|
||||
#endif /* !defined(RESOURCE_PRLIMIT_METHODDEF) */
|
||||
/*[clinic end generated code: output=916ecf0eb1927c37 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=2376b9a3f03777aa input=a9049054013a1b77]*/
|
||||
|
11
Modules/clinic/selectmodule.c.h
generated
11
Modules/clinic/selectmodule.c.h
generated
@ -3,12 +3,11 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedShort_Converter()
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedShort_Converter()
|
||||
|
||||
PyDoc_STRVAR(select_select__doc__,
|
||||
"select($module, rlist, wlist, xlist, timeout=None, /)\n"
|
||||
@ -1311,4 +1310,4 @@ exit:
|
||||
#ifndef SELECT_KQUEUE_CONTROL_METHODDEF
|
||||
#define SELECT_KQUEUE_CONTROL_METHODDEF
|
||||
#endif /* !defined(SELECT_KQUEUE_CONTROL_METHODDEF) */
|
||||
/*[clinic end generated code: output=a215af2157f038c7 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=35cd4aa7b6802838 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/sha1module.c.h
generated
7
Modules/clinic/sha1module.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(SHA1Type_copy__doc__,
|
||||
"copy($self, /)\n"
|
||||
"--\n"
|
||||
@ -148,4 +147,4 @@ skip_optional_kwonly:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=4d1293ca3472acdb input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=7efbe42154a7a7f8 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/sha2module.c.h
generated
7
Modules/clinic/sha2module.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(SHA256Type_copy__doc__,
|
||||
"copy($self, /)\n"
|
||||
"--\n"
|
||||
@ -437,4 +436,4 @@ skip_optional_kwonly:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=f81dacb48f3fee72 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=1242ccc50bcefe98 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/sha3module.c.h
generated
9
Modules/clinic/sha3module.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
#include "pycore_long.h" // _PyLong_UnsignedLong_Converter()
|
||||
|
||||
PyDoc_STRVAR(py_sha3_new__doc__,
|
||||
"sha3_224(data=b\'\', /, *, usedforsecurity=True)\n"
|
||||
@ -194,4 +193,4 @@ _sha3_shake_128_hexdigest(SHA3object *self, PyObject *arg)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=5188d9ae4af48c6d input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=0888aed37ef39984 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/signalmodule.c.h
generated
8
Modules/clinic/signalmodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(signal_default_int_handler__doc__,
|
||||
"default_int_handler($module, signalnum, frame, /)\n"
|
||||
"--\n"
|
||||
@ -705,4 +699,4 @@ exit:
|
||||
#ifndef SIGNAL_PIDFD_SEND_SIGNAL_METHODDEF
|
||||
#define SIGNAL_PIDFD_SEND_SIGNAL_METHODDEF
|
||||
#endif /* !defined(SIGNAL_PIDFD_SEND_SIGNAL_METHODDEF) */
|
||||
/*[clinic end generated code: output=9903be3eba6cbc1c input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=ef4c2ad1a2443063 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/socketmodule.c.h
generated
7
Modules/clinic/socketmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
static int
|
||||
sock_initobj_impl(PySocketSockObject *self, int family, int type, int proto,
|
||||
PyObject *fdobj);
|
||||
@ -91,4 +90,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=c44e3ac23999ac60 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=1b68ae94d6cbeeb1 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/symtablemodule.c.h
generated
8
Modules/clinic/symtablemodule.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(_symtable_symtable__doc__,
|
||||
"symtable($module, source, filename, startstr, /)\n"
|
||||
"--\n"
|
||||
@ -54,4 +48,4 @@ _symtable_symtable(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=07716ddbd6c7efe1 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=3f7ccf535d750238 input=a9049054013a1b77]*/
|
||||
|
7
Modules/clinic/syslogmodule.c.h
generated
7
Modules/clinic/syslogmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(syslog_openlog__doc__,
|
||||
"openlog($module, /, ident=<unrepresentable>, logoption=0,\n"
|
||||
" facility=LOG_USER)\n"
|
||||
@ -251,4 +250,4 @@ syslog_LOG_UPTO(PyObject *module, PyObject *arg)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=b8124c0977ed6177 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=68942dad7fb3872e input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/termios.c.h
generated
9
Modules/clinic/termios.c.h
generated
@ -2,12 +2,7 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
#include "pycore_fileutils.h" // _PyLong_FileDescriptor_Converter()
|
||||
|
||||
PyDoc_STRVAR(termios_tcgetattr__doc__,
|
||||
"tcgetattr($module, fd, /)\n"
|
||||
@ -293,4 +288,4 @@ termios_tcsetwinsize(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=434df4394b596e92 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=daecc8ebc8fe29f5 input=a9049054013a1b77]*/
|
||||
|
8
Modules/clinic/unicodedata.c.h
generated
8
Modules/clinic/unicodedata.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(unicodedata_UCD_decimal__doc__,
|
||||
"decimal($self, chr, default=<unrepresentable>, /)\n"
|
||||
"--\n"
|
||||
@ -523,4 +517,4 @@ unicodedata_UCD_lookup(PyObject *self, PyObject *arg)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=43e551ecaa985a40 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=ca10ded25747d182 input=a9049054013a1b77]*/
|
||||
|
9
Modules/clinic/zlibmodule.c.h
generated
9
Modules/clinic/zlibmodule.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(zlib_compress__doc__,
|
||||
"compress($module, data, /, level=Z_DEFAULT_COMPRESSION, wbits=MAX_WBITS)\n"
|
||||
@ -1130,4 +1129,4 @@ exit:
|
||||
#ifndef ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF
|
||||
#define ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF
|
||||
#endif /* !defined(ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF) */
|
||||
/*[clinic end generated code: output=d574a79aa47c9969 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=6d90c72ba2dd04c5 input=a9049054013a1b77]*/
|
||||
|
9
Objects/clinic/bytearrayobject.c.h
generated
9
Objects/clinic/bytearrayobject.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
static int
|
||||
bytearray___init___impl(PyByteArrayObject *self, PyObject *arg,
|
||||
@ -1285,4 +1284,4 @@ bytearray_sizeof(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
return bytearray_sizeof_impl(self);
|
||||
}
|
||||
/*[clinic end generated code: output=d388e9027b333f00 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=94b9b5f492b5fed6 input=a9049054013a1b77]*/
|
||||
|
9
Objects/clinic/bytesobject.c.h
generated
9
Objects/clinic/bytesobject.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
#include "pycore_abstract.h" // _PyNumber_Index()
|
||||
|
||||
PyDoc_STRVAR(bytes___bytes____doc__,
|
||||
"__bytes__($self, /)\n"
|
||||
@ -1061,4 +1060,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=9da56b6c04914e18 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=8a9f5c28cbfe7592 input=a9049054013a1b77]*/
|
||||
|
8
Objects/clinic/classobject.c.h
generated
8
Objects/clinic/classobject.c.h
generated
@ -2,12 +2,6 @@
|
||||
preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(method___reduce____doc__,
|
||||
"__reduce__($self, /)\n"
|
||||
"--\n"
|
||||
@ -86,4 +80,4 @@ instancemethod_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=2a5e7fa5947a86cb input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=a0d17bad3b0734d9 input=a9049054013a1b77]*/
|
||||
|
7
Objects/clinic/codeobject.c.h
generated
7
Objects/clinic/codeobject.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(code_new__doc__,
|
||||
"code(argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize,\n"
|
||||
" flags, codestring, constants, names, varnames, filename, name,\n"
|
||||
@ -464,4 +463,4 @@ code__varname_from_oparg(PyCodeObject *self, PyObject *const *args, Py_ssize_t n
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=0446968a1fbd13b2 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=b9ccfbfabe1a5f46 input=a9049054013a1b77]*/
|
||||
|
7
Objects/clinic/complexobject.c.h
generated
7
Objects/clinic/complexobject.c.h
generated
@ -3,11 +3,10 @@ preserve
|
||||
[clinic start generated code]*/
|
||||
|
||||
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
# include "pycore_gc.h" // PyGC_Head
|
||||
# include "pycore_runtime.h" // _Py_ID()
|
||||
#endif
|
||||
|
||||
|
||||
PyDoc_STRVAR(complex_conjugate__doc__,
|
||||
"conjugate($self, /)\n"
|
||||
"--\n"
|
||||
@ -157,4 +156,4 @@ skip_optional_pos:
|
||||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=d438b7ed87f8459e input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=002c74f8a33b6697 input=a9049054013a1b77]*/
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user