From 1ac13c847b5358faba44dbb638a828e24369467b Mon Sep 17 00:00:00 2001 From: AlexSm Date: Tue, 5 Mar 2024 10:40:59 +0100 Subject: Library import 16 (#2433) Co-authored-by: robot-piglet Co-authored-by: deshevoy Co-authored-by: robot-contrib Co-authored-by: thegeorg Co-authored-by: robot-ya-builder Co-authored-by: svidyuk Co-authored-by: shadchin Co-authored-by: robot-ratatosk Co-authored-by: innokentii Co-authored-by: arkady-e1ppa Co-authored-by: snermolaev Co-authored-by: dimdim11 Co-authored-by: kickbutt Co-authored-by: abdullinsaid Co-authored-by: korsunandrei Co-authored-by: petrk Co-authored-by: miroslav2 Co-authored-by: serjflint Co-authored-by: akhropov Co-authored-by: prettyboy Co-authored-by: ilikepugs Co-authored-by: hiddenpath Co-authored-by: mikhnenko Co-authored-by: spreis Co-authored-by: andreyshspb Co-authored-by: dimaandreev Co-authored-by: rashid Co-authored-by: robot-ydb-importer Co-authored-by: r-vetrov Co-authored-by: ypodlesov Co-authored-by: zaverden Co-authored-by: vpozdyayev Co-authored-by: robot-cozmo Co-authored-by: v-korovin Co-authored-by: arikon Co-authored-by: khoden Co-authored-by: psydmm Co-authored-by: robot-javacom Co-authored-by: dtorilov Co-authored-by: sennikovmv Co-authored-by: hcpp --- contrib/tools/python3/src/Include/Python.h | 109 ----------------------------- 1 file changed, 109 deletions(-) delete mode 100644 contrib/tools/python3/src/Include/Python.h (limited to 'contrib/tools/python3/src/Include/Python.h') diff --git a/contrib/tools/python3/src/Include/Python.h b/contrib/tools/python3/src/Include/Python.h deleted file mode 100644 index 52a7aac6ba6..00000000000 --- a/contrib/tools/python3/src/Include/Python.h +++ /dev/null @@ -1,109 +0,0 @@ -// Entry point of the Python C API. -// C extensions should only #include , and not include directly -// the other Python header files included by . - -#ifndef Py_PYTHON_H -#define Py_PYTHON_H - -// Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { - -// Include Python header files -#include "patchlevel.h" -#include "pyconfig.h" -#include "pymacconfig.h" - -#if defined(__sgi) && !defined(_SGI_MP_SOURCE) -# define _SGI_MP_SOURCE -#endif - -// stdlib.h, stdio.h, errno.h and string.h headers are not used by Python -// headers, but kept for backward compatibility. They are excluded from the -// limited C API of Python 3.11. -#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000 -# include -# include // FILE* -# include // errno -# include // memcpy() -#endif -#ifndef MS_WINDOWS -# include -#endif -#ifdef HAVE_STDDEF_H -# include // size_t -#endif - -#include // assert() -#include // wchar_t - -#include "pyport.h" -#include "pymacro.h" -#include "pymath.h" -#include "pymem.h" -#include "pytypedefs.h" -#include "pybuffer.h" -#include "object.h" -#include "objimpl.h" -#include "typeslots.h" -#include "pyhash.h" -#include "cpython/pydebug.h" -#include "bytearrayobject.h" -#include "bytesobject.h" -#include "unicodeobject.h" -#include "longobject.h" -#include "cpython/longintrepr.h" -#include "boolobject.h" -#include "floatobject.h" -#include "complexobject.h" -#include "rangeobject.h" -#include "memoryobject.h" -#include "tupleobject.h" -#include "listobject.h" -#include "dictobject.h" -#include "cpython/odictobject.h" -#include "enumobject.h" -#include "setobject.h" -#include "methodobject.h" -#include "moduleobject.h" -#include "cpython/funcobject.h" -#include "cpython/classobject.h" -#include "fileobject.h" -#include "pycapsule.h" -#include "cpython/code.h" -#include "pyframe.h" -#include "traceback.h" -#include "sliceobject.h" -#include "cpython/cellobject.h" -#include "iterobject.h" -#include "cpython/initconfig.h" -#include "pystate.h" -#include "cpython/genobject.h" -#include "descrobject.h" -#include "genericaliasobject.h" -#include "warnings.h" -#include "weakrefobject.h" -#include "structseq.h" -#include "cpython/picklebufobject.h" -#include "cpython/pytime.h" -#include "codecs.h" -#include "pyerrors.h" -#include "pythread.h" -#include "cpython/context.h" -#include "modsupport.h" -#include "compile.h" -#include "pythonrun.h" -#include "pylifecycle.h" -#include "ceval.h" -#include "sysmodule.h" -#include "osmodule.h" -#include "intrcheck.h" -#include "import.h" -#include "abstract.h" -#include "bltinmodule.h" -#include "cpython/pyctype.h" -#include "pystrtod.h" -#include "pystrcmp.h" -#include "fileutils.h" -#include "cpython/pyfpe.h" -#include "tracemalloc.h" - -#endif /* !Py_PYTHON_H */ -- cgit v1.3