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/code.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
/
code.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
executable file
·
107 lines (91 loc) · 3.8 KB
master
Breadcrumbs
PythonIniOS
/
Python-iOS
/
libPython
/
Include
/
code.h
Copy path
Top
File metadata and controls
Code
Blame
executable file
·
107 lines (91 loc) · 3.8 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
/* Definitions for bytecode */
#ifndef
Py_CODE_H
#define
Py_CODE_H
#ifdef
__cplusplus
extern
"C"
{
#endif
/* Bytecode object */
typedef
struct
{
PyObject_HEAD
int
co_argcount
;
/* #arguments, except *args */
int
co_nlocals
;
/* #local variables */
int
co_stacksize
;
/* #entries needed for evaluation stack */
int
co_flags
;
/* CO_..., see below */
PyObject
*
co_code
;
/* instruction opcodes */
PyObject
*
co_consts
;
/* list (constants used) */
PyObject
*
co_names
;
/* list of strings (names used) */
PyObject
*
co_varnames
;
/* tuple of strings (local variable names) */
PyObject
*
co_freevars
;
/* tuple of strings (free variable names) */
PyObject
*
co_cellvars
;
/* tuple of strings (cell variable names) */
/* The rest doesn't count for hash/cmp */
PyObject
*
co_filename
;
/* string (where it was loaded from) */
PyObject
*
co_name
;
/* string (name, for reference) */
int
co_firstlineno
;
/* first source line number */
PyObject
*
co_lnotab
;
/* string (encoding addr<->lineno mapping) See
Objects/lnotab_notes.txt for details. */
void
*
co_zombieframe
;
/* for optimization only (see frameobject.c) */
PyObject
*
co_weakreflist
;
/* to support weakrefs to code objects */
}
PyCodeObject
;
/* Masks for co_flags above */
#define
CO_OPTIMIZED
0x0001
#define
CO_NEWLOCALS
0x0002
#define
CO_VARARGS
0x0004
#define
CO_VARKEYWORDS
0x0008
#define
CO_NESTED
0x0010
#define
CO_GENERATOR
0x0020
/* The CO_NOFREE flag is set if there are no free or cell variables.
This information is redundant, but it allows a single flag test
to determine whether there is any extra work to be done when the
call frame it setup.
*/
#define
CO_NOFREE
0x0040
#if
0
/* This is no longer used. Stopped defining in 2.5, do not re-use. */
#define
CO_GENERATOR_ALLOWED
0x1000
#endif
#define
CO_FUTURE_DIVISION
0x2000
#define
CO_FUTURE_ABSOLUTE_IMPORT
0x4000
/* do absolute imports by default */
#define
CO_FUTURE_WITH_STATEMENT
0x8000
#define
CO_FUTURE_PRINT_FUNCTION
0x10000
#define
CO_FUTURE_UNICODE_LITERALS
0x20000
/* This should be defined if a future statement modifies the syntax.
For example, when a keyword is added.
*/
#if
1
#define
PY_PARSER_REQUIRES_FUTURE_KEYWORD
#endif
#define
CO_MAXBLOCKS
20
/* Max static block nesting within a function */
PyAPI_DATA
(
PyTypeObject
)
PyCode_Type
;
#define
PyCode_Check
(
op
) (Py_TYPE(op) == &PyCode_Type)
#define
PyCode_GetNumFree
(
op
) (PyTuple_GET_SIZE((op)->co_freevars))
/* Public interface */
PyAPI_FUNC
(
PyCodeObject
*
)
PyCode_New
(
int
,
int
,
int
,
int
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
int
,
PyObject
*
);
/* same as struct above */
/* Creates a new empty code object with the specified source location. */
PyAPI_FUNC
(
PyCodeObject
*
)
PyCode_NewEmpty
(
const
char
*
filename
,
const
char
*
funcname
,
int
firstlineno
);
/* Return the line number associated with the specified bytecode index
in this code object. If you just need the line number of a frame,
use PyFrame_GetLineNumber() instead. */
PyAPI_FUNC
(
int
)
PyCode_Addr2Line
(
PyCodeObject
*
,
int
);
/* for internal use only */
#define
_PyCode_GETCODEPTR
(
co
,
pp
) \
((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
((co)->co_code, 0, (void **)(pp)))
typedef
struct
_addr_pair
{
int
ap_lower
;
int
ap_upper
;
}
PyAddrPair
;
/* Update *bounds to describe the first and one-past-the-last instructions in the
same line as lasti. Return the number of that line.
*/
PyAPI_FUNC
(
int
)
_PyCode_CheckLineNumber
(
PyCodeObject
*
co
,
int
lasti
,
PyAddrPair
*
bounds
);
PyAPI_FUNC
(
PyObject
*
)
PyCode_Optimize
(
PyObject
*
code
,
PyObject
*
consts
,
PyObject
*
names
,
PyObject
*
lineno_obj
);
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_CODE_H */
You can’t perform that action at this time.