Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
PythonIniOS/Python-iOS/libPython/Include/Python.h at master · SuPair/PythonIniOS · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
SuPair
/
PythonIniOS
Public
forked from
koalahl/PythonIniOS
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
PythonIniOS
/
Python-iOS
/
libPython
/
Include
/
Python.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
executable file
·
178 lines (146 loc) · 4.23 KB
master
Breadcrumbs
PythonIniOS
/
Python-iOS
/
libPython
/
Include
/
Python.h
Copy path
Top
File metadata and controls
Code
Blame
executable file
·
178 lines (146 loc) · 4.23 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#ifndef
Py_PYTHON_H
#define
Py_PYTHON_H
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
/* Include nearly all Python header files */
#include
"patchlevel.h"
#include
"pyconfig.h"
#include
"pymacconfig.h"
/* Cyclic gc is always enabled, starting with release 2.3a1. Supply the
* old symbol for the benefit of extension modules written before then
* that may be conditionalizing on it. The core doesn't use it anymore.
*/
#ifndef
WITH_CYCLE_GC
#define
WITH_CYCLE_GC
1
#endif
#include
<limits.h>
#ifndef
UCHAR_MAX
#error
"Something's broken. UCHAR_MAX should be defined in limits.h."
#endif
#if
UCHAR_MAX
!=
255
#error
"Python's source code assumes C's unsigned char is an 8-bit type."
#endif
#if
defined(
__sgi
)
&&
defined(
WITH_THREAD
)
&&
!defined(
_SGI_MP_SOURCE
)
#define
_SGI_MP_SOURCE
#endif
#include
<stdio.h>
#ifndef
NULL
# error
"Python.h requires that stdio.h define NULL."
#endif
#include
<string.h>
#ifdef
HAVE_ERRNO_H
#include
<errno.h>
#endif
#include
<stdlib.h>
#ifdef
HAVE_UNISTD_H
#include
<unistd.h>
#endif
/* For size_t? */
#ifdef
HAVE_STDDEF_H
#include
<stddef.h>
#endif
/* CAUTION: Build setups should ensure that NDEBUG is defined on the
* compiler command line when building Python in release mode; else
* assert() calls won't be removed.
*/
#include
<assert.h>
#include
"pyport.h"
/* pyconfig.h or pyport.h may or may not define DL_IMPORT */
#ifndef
DL_IMPORT
/* declarations for DLL import/export */
#define
DL_IMPORT
(
RTYPE
) RTYPE
#endif
#ifndef
DL_EXPORT
/* declarations for DLL import/export */
#define
DL_EXPORT
(
RTYPE
) RTYPE
#endif
/* Debug-mode build with pymalloc implies PYMALLOC_DEBUG.
* PYMALLOC_DEBUG is in error if pymalloc is not in use.
*/
#if
defined(
Py_DEBUG
)
&&
defined(
WITH_PYMALLOC
)
&&
!defined(
PYMALLOC_DEBUG
)
#define
PYMALLOC_DEBUG
#endif
#if
defined(
PYMALLOC_DEBUG
)
&&
!defined(
WITH_PYMALLOC
)
#error
"PYMALLOC_DEBUG requires WITH_PYMALLOC"
#endif
#include
"pymath.h"
#include
"pymem.h"
#include
"object.h"
#include
"objimpl.h"
#include
"pydebug.h"
#include
"unicodeobject.h"
#include
"intobject.h"
#include
"boolobject.h"
#include
"longobject.h"
#include
"floatobject.h"
#ifndef
WITHOUT_COMPLEX
#include
"complexobject.h"
#endif
#include
"rangeobject.h"
#include
"stringobject.h"
#include
"memoryobject.h"
#include
"bufferobject.h"
#include
"bytesobject.h"
#include
"bytearrayobject.h"
#include
"tupleobject.h"
#include
"listobject.h"
#include
"dictobject.h"
#include
"enumobject.h"
#include
"setobject.h"
#include
"methodobject.h"
#include
"moduleobject.h"
#include
"funcobject.h"
#include
"classobject.h"
#include
"fileobject.h"
#include
"cobject.h"
#include
"pycapsule.h"
#include
"traceback.h"
#include
"sliceobject.h"
#include
"cellobject.h"
#include
"iterobject.h"
#include
"genobject.h"
#include
"descrobject.h"
#include
"warnings.h"
#include
"weakrefobject.h"
#include
"codecs.h"
#include
"pyerrors.h"
#include
"pystate.h"
#include
"pyarena.h"
#include
"modsupport.h"
#include
"pythonrun.h"
#include
"ceval.h"
#include
"sysmodule.h"
#include
"intrcheck.h"
#include
"import.h"
#include
"abstract.h"
#include
"compile.h"
#include
"eval.h"
#include
"pyctype.h"
#include
"pystrtod.h"
#include
"pystrcmp.h"
#include
"dtoa.h"
/* _Py_Mangle is defined in compile.c */
PyAPI_FUNC
(
PyObject
*
)
_Py_Mangle
(
PyObject
*
p
,
PyObject
*
name
);
/* PyArg_GetInt is deprecated and should not be used, use PyArg_Parse(). */
#define
PyArg_GetInt
(
v
,
a
) PyArg_Parse((v), "i", (a))
/* PyArg_NoArgs should not be necessary.
Set ml_flags in the PyMethodDef to METH_NOARGS. */
#define
PyArg_NoArgs
(
v
) PyArg_Parse(v, "")
/* Argument must be a char or an int in [-128, 127] or [0, 255]. */
#define
Py_CHARMASK
(
c
) ((unsigned char)((c) & 0xff))
#include
"pyfpe.h"
/* These definitions must match corresponding definitions in graminit.h.
There's code in compile.c that checks that they are the same. */
#define
Py_single_input
256
#define
Py_file_input
257
#define
Py_eval_input
258
#ifdef
HAVE_PTH
/* GNU pth user-space thread support */
#include
<pth.h>
#endif
/* Define macros for inline documentation. */
#define
PyDoc_VAR
(
name
) static char name[]
#define
PyDoc_STRVAR
(
name
,
str
) PyDoc_VAR(name) = PyDoc_STR(str)
#ifdef
WITH_DOC_STRINGS
#define
PyDoc_STR
(
str
) str
#else
#define
PyDoc_STR
(
str
) ""
#endif
#endif
/* !Py_PYTHON_H */
You can’t perform that action at this time.