mirror of https://github.com/python/cpython
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
These functions were undocumented and excluded from the limited C API. Most names defined by these header files were not prefixed by "Py" and so could create names conflicts. For example, Python-ast.h defined a "Yield" macro which was conflict with the "Yield" name used by the Windows <winbase.h> header. Use the Python ast module instead. * Move Include/asdl.h to Include/internal/pycore_asdl.h. * Move Include/Python-ast.h to Include/internal/pycore_ast.h. * Remove ast.h header file. * pycore_symtable.h no longer includes Python-ast.h.
This commit is contained in:
parent
cd27af70d5
commit
94faa0724f
|
@ -47,7 +47,7 @@ PC/clinic/*.h linguist-generated=true
|
||||||
Python/clinic/*.h linguist-generated=true
|
Python/clinic/*.h linguist-generated=true
|
||||||
Python/importlib.h linguist-generated=true
|
Python/importlib.h linguist-generated=true
|
||||||
Python/importlib_external.h linguist-generated=true
|
Python/importlib_external.h linguist-generated=true
|
||||||
Include/Python-ast.h linguist-generated=true
|
Include/internal/pycore_ast.h linguist-generated=true
|
||||||
Python/Python-ast.c linguist-generated=true
|
Python/Python-ast.c linguist-generated=true
|
||||||
Include/opcode.h linguist-generated=true
|
Include/opcode.h linguist-generated=true
|
||||||
Python/opcode_targets.h linguist-generated=true
|
Python/opcode_targets.h linguist-generated=true
|
||||||
|
|
|
@ -1384,5 +1384,13 @@ Removed
|
||||||
it could not be used, because the ``symtable.h`` header file was excluded
|
it could not be used, because the ``symtable.h`` header file was excluded
|
||||||
from the limited C API.
|
from the limited C API.
|
||||||
|
|
||||||
The Python :mod:`symtable` module remains available and is unchanged.
|
Use Python :mod:`symtable` module instead.
|
||||||
|
(Contributed by Victor Stinner in :issue:`43244`.)
|
||||||
|
|
||||||
|
* Remove ``ast.h``, ``asdl.h``, and ``Python-ast.h`` header files.
|
||||||
|
These functions were undocumented and excluded from the limited C API.
|
||||||
|
Most names defined by these header files were not prefixed by ``Py`` and so
|
||||||
|
could create names conflicts. For example, ``Python-ast.h`` defined a
|
||||||
|
``Yield`` macro which was conflict with the ``Yield`` name used by the
|
||||||
|
Windows ``<winbase.h>`` header. Use the Python :mod:`ast` module instead.
|
||||||
(Contributed by Victor Stinner in :issue:`43244`.)
|
(Contributed by Victor Stinner in :issue:`43244`.)
|
||||||
|
|
|
@ -1,828 +0,0 @@
|
||||||
// File automatically generated by Parser/asdl_c.py.
|
|
||||||
|
|
||||||
#ifndef Py_PYTHON_AST_H
|
|
||||||
#define Py_PYTHON_AST_H
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef Py_LIMITED_API
|
|
||||||
#include "asdl.h"
|
|
||||||
|
|
||||||
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
|
||||||
|
|
||||||
typedef struct _mod *mod_ty;
|
|
||||||
|
|
||||||
typedef struct _stmt *stmt_ty;
|
|
||||||
|
|
||||||
typedef struct _expr *expr_ty;
|
|
||||||
|
|
||||||
typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;
|
|
||||||
|
|
||||||
typedef enum _boolop { And=1, Or=2 } boolop_ty;
|
|
||||||
|
|
||||||
typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,
|
|
||||||
LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12,
|
|
||||||
FloorDiv=13 } operator_ty;
|
|
||||||
|
|
||||||
typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;
|
|
||||||
|
|
||||||
typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
|
|
||||||
In=9, NotIn=10 } cmpop_ty;
|
|
||||||
|
|
||||||
typedef struct _comprehension *comprehension_ty;
|
|
||||||
|
|
||||||
typedef struct _excepthandler *excepthandler_ty;
|
|
||||||
|
|
||||||
typedef struct _arguments *arguments_ty;
|
|
||||||
|
|
||||||
typedef struct _arg *arg_ty;
|
|
||||||
|
|
||||||
typedef struct _keyword *keyword_ty;
|
|
||||||
|
|
||||||
typedef struct _alias *alias_ty;
|
|
||||||
|
|
||||||
typedef struct _withitem *withitem_ty;
|
|
||||||
|
|
||||||
typedef struct _match_case *match_case_ty;
|
|
||||||
|
|
||||||
typedef struct _type_ignore *type_ignore_ty;
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
mod_ty typed_elements[1];
|
|
||||||
} asdl_mod_seq;
|
|
||||||
|
|
||||||
asdl_mod_seq *_Py_asdl_mod_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
stmt_ty typed_elements[1];
|
|
||||||
} asdl_stmt_seq;
|
|
||||||
|
|
||||||
asdl_stmt_seq *_Py_asdl_stmt_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
expr_ty typed_elements[1];
|
|
||||||
} asdl_expr_seq;
|
|
||||||
|
|
||||||
asdl_expr_seq *_Py_asdl_expr_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
comprehension_ty typed_elements[1];
|
|
||||||
} asdl_comprehension_seq;
|
|
||||||
|
|
||||||
asdl_comprehension_seq *_Py_asdl_comprehension_seq_new(Py_ssize_t size, PyArena
|
|
||||||
*arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
excepthandler_ty typed_elements[1];
|
|
||||||
} asdl_excepthandler_seq;
|
|
||||||
|
|
||||||
asdl_excepthandler_seq *_Py_asdl_excepthandler_seq_new(Py_ssize_t size, PyArena
|
|
||||||
*arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
arguments_ty typed_elements[1];
|
|
||||||
} asdl_arguments_seq;
|
|
||||||
|
|
||||||
asdl_arguments_seq *_Py_asdl_arguments_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
arg_ty typed_elements[1];
|
|
||||||
} asdl_arg_seq;
|
|
||||||
|
|
||||||
asdl_arg_seq *_Py_asdl_arg_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
keyword_ty typed_elements[1];
|
|
||||||
} asdl_keyword_seq;
|
|
||||||
|
|
||||||
asdl_keyword_seq *_Py_asdl_keyword_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
alias_ty typed_elements[1];
|
|
||||||
} asdl_alias_seq;
|
|
||||||
|
|
||||||
asdl_alias_seq *_Py_asdl_alias_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
withitem_ty typed_elements[1];
|
|
||||||
} asdl_withitem_seq;
|
|
||||||
|
|
||||||
asdl_withitem_seq *_Py_asdl_withitem_seq_new(Py_ssize_t size, PyArena *arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
match_case_ty typed_elements[1];
|
|
||||||
} asdl_match_case_seq;
|
|
||||||
|
|
||||||
asdl_match_case_seq *_Py_asdl_match_case_seq_new(Py_ssize_t size, PyArena
|
|
||||||
*arena);
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
_ASDL_SEQ_HEAD
|
|
||||||
type_ignore_ty typed_elements[1];
|
|
||||||
} asdl_type_ignore_seq;
|
|
||||||
|
|
||||||
asdl_type_ignore_seq *_Py_asdl_type_ignore_seq_new(Py_ssize_t size, PyArena
|
|
||||||
*arena);
|
|
||||||
|
|
||||||
|
|
||||||
enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,
|
|
||||||
FunctionType_kind=4};
|
|
||||||
struct _mod {
|
|
||||||
enum _mod_kind kind;
|
|
||||||
union {
|
|
||||||
struct {
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_type_ignore_seq *type_ignores;
|
|
||||||
} Module;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
} Interactive;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty body;
|
|
||||||
} Expression;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *argtypes;
|
|
||||||
expr_ty returns;
|
|
||||||
} FunctionType;
|
|
||||||
|
|
||||||
} v;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum _stmt_kind {FunctionDef_kind=1, AsyncFunctionDef_kind=2, ClassDef_kind=3,
|
|
||||||
Return_kind=4, Delete_kind=5, Assign_kind=6,
|
|
||||||
AugAssign_kind=7, AnnAssign_kind=8, For_kind=9,
|
|
||||||
AsyncFor_kind=10, While_kind=11, If_kind=12, With_kind=13,
|
|
||||||
AsyncWith_kind=14, Match_kind=15, Raise_kind=16, Try_kind=17,
|
|
||||||
Assert_kind=18, Import_kind=19, ImportFrom_kind=20,
|
|
||||||
Global_kind=21, Nonlocal_kind=22, Expr_kind=23, Pass_kind=24,
|
|
||||||
Break_kind=25, Continue_kind=26};
|
|
||||||
struct _stmt {
|
|
||||||
enum _stmt_kind kind;
|
|
||||||
union {
|
|
||||||
struct {
|
|
||||||
identifier name;
|
|
||||||
arguments_ty args;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_expr_seq *decorator_list;
|
|
||||||
expr_ty returns;
|
|
||||||
string type_comment;
|
|
||||||
} FunctionDef;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
identifier name;
|
|
||||||
arguments_ty args;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_expr_seq *decorator_list;
|
|
||||||
expr_ty returns;
|
|
||||||
string type_comment;
|
|
||||||
} AsyncFunctionDef;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
identifier name;
|
|
||||||
asdl_expr_seq *bases;
|
|
||||||
asdl_keyword_seq *keywords;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_expr_seq *decorator_list;
|
|
||||||
} ClassDef;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
} Return;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *targets;
|
|
||||||
} Delete;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *targets;
|
|
||||||
expr_ty value;
|
|
||||||
string type_comment;
|
|
||||||
} Assign;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty target;
|
|
||||||
operator_ty op;
|
|
||||||
expr_ty value;
|
|
||||||
} AugAssign;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty target;
|
|
||||||
expr_ty annotation;
|
|
||||||
expr_ty value;
|
|
||||||
int simple;
|
|
||||||
} AnnAssign;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty target;
|
|
||||||
expr_ty iter;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_stmt_seq *orelse;
|
|
||||||
string type_comment;
|
|
||||||
} For;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty target;
|
|
||||||
expr_ty iter;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_stmt_seq *orelse;
|
|
||||||
string type_comment;
|
|
||||||
} AsyncFor;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty test;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_stmt_seq *orelse;
|
|
||||||
} While;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty test;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_stmt_seq *orelse;
|
|
||||||
} If;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_withitem_seq *items;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
string type_comment;
|
|
||||||
} With;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_withitem_seq *items;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
string type_comment;
|
|
||||||
} AsyncWith;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty subject;
|
|
||||||
asdl_match_case_seq *cases;
|
|
||||||
} Match;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty exc;
|
|
||||||
expr_ty cause;
|
|
||||||
} Raise;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
asdl_excepthandler_seq *handlers;
|
|
||||||
asdl_stmt_seq *orelse;
|
|
||||||
asdl_stmt_seq *finalbody;
|
|
||||||
} Try;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty test;
|
|
||||||
expr_ty msg;
|
|
||||||
} Assert;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_alias_seq *names;
|
|
||||||
} Import;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
identifier module;
|
|
||||||
asdl_alias_seq *names;
|
|
||||||
int level;
|
|
||||||
} ImportFrom;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_identifier_seq *names;
|
|
||||||
} Global;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_identifier_seq *names;
|
|
||||||
} Nonlocal;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
} Expr;
|
|
||||||
|
|
||||||
} v;
|
|
||||||
int lineno;
|
|
||||||
int col_offset;
|
|
||||||
int end_lineno;
|
|
||||||
int end_col_offset;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum _expr_kind {BoolOp_kind=1, NamedExpr_kind=2, BinOp_kind=3, UnaryOp_kind=4,
|
|
||||||
Lambda_kind=5, IfExp_kind=6, Dict_kind=7, Set_kind=8,
|
|
||||||
ListComp_kind=9, SetComp_kind=10, DictComp_kind=11,
|
|
||||||
GeneratorExp_kind=12, Await_kind=13, Yield_kind=14,
|
|
||||||
YieldFrom_kind=15, Compare_kind=16, Call_kind=17,
|
|
||||||
FormattedValue_kind=18, JoinedStr_kind=19, Constant_kind=20,
|
|
||||||
Attribute_kind=21, Subscript_kind=22, Starred_kind=23,
|
|
||||||
Name_kind=24, List_kind=25, Tuple_kind=26, Slice_kind=27,
|
|
||||||
MatchAs_kind=28, MatchOr_kind=29};
|
|
||||||
struct _expr {
|
|
||||||
enum _expr_kind kind;
|
|
||||||
union {
|
|
||||||
struct {
|
|
||||||
boolop_ty op;
|
|
||||||
asdl_expr_seq *values;
|
|
||||||
} BoolOp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty target;
|
|
||||||
expr_ty value;
|
|
||||||
} NamedExpr;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty left;
|
|
||||||
operator_ty op;
|
|
||||||
expr_ty right;
|
|
||||||
} BinOp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
unaryop_ty op;
|
|
||||||
expr_ty operand;
|
|
||||||
} UnaryOp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
arguments_ty args;
|
|
||||||
expr_ty body;
|
|
||||||
} Lambda;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty test;
|
|
||||||
expr_ty body;
|
|
||||||
expr_ty orelse;
|
|
||||||
} IfExp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *keys;
|
|
||||||
asdl_expr_seq *values;
|
|
||||||
} Dict;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *elts;
|
|
||||||
} Set;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty elt;
|
|
||||||
asdl_comprehension_seq *generators;
|
|
||||||
} ListComp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty elt;
|
|
||||||
asdl_comprehension_seq *generators;
|
|
||||||
} SetComp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty key;
|
|
||||||
expr_ty value;
|
|
||||||
asdl_comprehension_seq *generators;
|
|
||||||
} DictComp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty elt;
|
|
||||||
asdl_comprehension_seq *generators;
|
|
||||||
} GeneratorExp;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
} Await;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
} Yield;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
} YieldFrom;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty left;
|
|
||||||
asdl_int_seq *ops;
|
|
||||||
asdl_expr_seq *comparators;
|
|
||||||
} Compare;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty func;
|
|
||||||
asdl_expr_seq *args;
|
|
||||||
asdl_keyword_seq *keywords;
|
|
||||||
} Call;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
int conversion;
|
|
||||||
expr_ty format_spec;
|
|
||||||
} FormattedValue;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *values;
|
|
||||||
} JoinedStr;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
constant value;
|
|
||||||
string kind;
|
|
||||||
} Constant;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
identifier attr;
|
|
||||||
expr_context_ty ctx;
|
|
||||||
} Attribute;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
expr_ty slice;
|
|
||||||
expr_context_ty ctx;
|
|
||||||
} Subscript;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty value;
|
|
||||||
expr_context_ty ctx;
|
|
||||||
} Starred;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
identifier id;
|
|
||||||
expr_context_ty ctx;
|
|
||||||
} Name;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *elts;
|
|
||||||
expr_context_ty ctx;
|
|
||||||
} List;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *elts;
|
|
||||||
expr_context_ty ctx;
|
|
||||||
} Tuple;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty lower;
|
|
||||||
expr_ty upper;
|
|
||||||
expr_ty step;
|
|
||||||
} Slice;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
expr_ty pattern;
|
|
||||||
identifier name;
|
|
||||||
} MatchAs;
|
|
||||||
|
|
||||||
struct {
|
|
||||||
asdl_expr_seq *patterns;
|
|
||||||
} MatchOr;
|
|
||||||
|
|
||||||
} v;
|
|
||||||
int lineno;
|
|
||||||
int col_offset;
|
|
||||||
int end_lineno;
|
|
||||||
int end_col_offset;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _comprehension {
|
|
||||||
expr_ty target;
|
|
||||||
expr_ty iter;
|
|
||||||
asdl_expr_seq *ifs;
|
|
||||||
int is_async;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum _excepthandler_kind {ExceptHandler_kind=1};
|
|
||||||
struct _excepthandler {
|
|
||||||
enum _excepthandler_kind kind;
|
|
||||||
union {
|
|
||||||
struct {
|
|
||||||
expr_ty type;
|
|
||||||
identifier name;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
} ExceptHandler;
|
|
||||||
|
|
||||||
} v;
|
|
||||||
int lineno;
|
|
||||||
int col_offset;
|
|
||||||
int end_lineno;
|
|
||||||
int end_col_offset;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _arguments {
|
|
||||||
asdl_arg_seq *posonlyargs;
|
|
||||||
asdl_arg_seq *args;
|
|
||||||
arg_ty vararg;
|
|
||||||
asdl_arg_seq *kwonlyargs;
|
|
||||||
asdl_expr_seq *kw_defaults;
|
|
||||||
arg_ty kwarg;
|
|
||||||
asdl_expr_seq *defaults;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _arg {
|
|
||||||
identifier arg;
|
|
||||||
expr_ty annotation;
|
|
||||||
string type_comment;
|
|
||||||
int lineno;
|
|
||||||
int col_offset;
|
|
||||||
int end_lineno;
|
|
||||||
int end_col_offset;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _keyword {
|
|
||||||
identifier arg;
|
|
||||||
expr_ty value;
|
|
||||||
int lineno;
|
|
||||||
int col_offset;
|
|
||||||
int end_lineno;
|
|
||||||
int end_col_offset;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _alias {
|
|
||||||
identifier name;
|
|
||||||
identifier asname;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _withitem {
|
|
||||||
expr_ty context_expr;
|
|
||||||
expr_ty optional_vars;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _match_case {
|
|
||||||
expr_ty pattern;
|
|
||||||
expr_ty guard;
|
|
||||||
asdl_stmt_seq *body;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum _type_ignore_kind {TypeIgnore_kind=1};
|
|
||||||
struct _type_ignore {
|
|
||||||
enum _type_ignore_kind kind;
|
|
||||||
union {
|
|
||||||
struct {
|
|
||||||
int lineno;
|
|
||||||
string tag;
|
|
||||||
} TypeIgnore;
|
|
||||||
|
|
||||||
} v;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// Note: these macros affect function definitions, not only call sites.
|
|
||||||
#define Module(a0, a1, a2) _Py_Module(a0, a1, a2)
|
|
||||||
mod_ty _Py_Module(asdl_stmt_seq * body, asdl_type_ignore_seq * type_ignores,
|
|
||||||
PyArena *arena);
|
|
||||||
#define Interactive(a0, a1) _Py_Interactive(a0, a1)
|
|
||||||
mod_ty _Py_Interactive(asdl_stmt_seq * body, PyArena *arena);
|
|
||||||
#define Expression(a0, a1) _Py_Expression(a0, a1)
|
|
||||||
mod_ty _Py_Expression(expr_ty body, PyArena *arena);
|
|
||||||
#define FunctionType(a0, a1, a2) _Py_FunctionType(a0, a1, a2)
|
|
||||||
mod_ty _Py_FunctionType(asdl_expr_seq * argtypes, expr_ty returns, PyArena
|
|
||||||
*arena);
|
|
||||||
#define FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
|
|
||||||
stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_stmt_seq *
|
|
||||||
body, asdl_expr_seq * decorator_list, expr_ty returns,
|
|
||||||
string type_comment, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define AsyncFunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) _Py_AsyncFunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
|
|
||||||
stmt_ty _Py_AsyncFunctionDef(identifier name, arguments_ty args, asdl_stmt_seq
|
|
||||||
* body, asdl_expr_seq * decorator_list, expr_ty
|
|
||||||
returns, string type_comment, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset,
|
|
||||||
PyArena *arena);
|
|
||||||
#define ClassDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) _Py_ClassDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
|
||||||
stmt_ty _Py_ClassDef(identifier name, asdl_expr_seq * bases, asdl_keyword_seq *
|
|
||||||
keywords, asdl_stmt_seq * body, asdl_expr_seq *
|
|
||||||
decorator_list, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Return(a0, a1, a2, a3, a4, a5) _Py_Return(a0, a1, a2, a3, a4, a5)
|
|
||||||
stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, int end_lineno,
|
|
||||||
int end_col_offset, PyArena *arena);
|
|
||||||
#define Delete(a0, a1, a2, a3, a4, a5) _Py_Delete(a0, a1, a2, a3, a4, a5)
|
|
||||||
stmt_ty _Py_Delete(asdl_expr_seq * targets, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Assign(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Assign(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
stmt_ty _Py_Assign(asdl_expr_seq * targets, expr_ty value, string type_comment,
|
|
||||||
int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define AugAssign(a0, a1, a2, a3, a4, a5, a6, a7) _Py_AugAssign(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int
|
|
||||||
lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define AnnAssign(a0, a1, a2, a3, a4, a5, a6, a7, a8) _Py_AnnAssign(a0, a1, a2, a3, a4, a5, a6, a7, a8)
|
|
||||||
stmt_ty _Py_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int
|
|
||||||
simple, int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define For(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) _Py_For(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
|
||||||
stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_stmt_seq * body,
|
|
||||||
asdl_stmt_seq * orelse, string type_comment, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define AsyncFor(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) _Py_AsyncFor(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
|
||||||
stmt_ty _Py_AsyncFor(expr_ty target, expr_ty iter, asdl_stmt_seq * body,
|
|
||||||
asdl_stmt_seq * orelse, string type_comment, int lineno,
|
|
||||||
int col_offset, int end_lineno, int end_col_offset,
|
|
||||||
PyArena *arena);
|
|
||||||
#define While(a0, a1, a2, a3, a4, a5, a6, a7) _Py_While(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
stmt_ty _Py_While(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse,
|
|
||||||
int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define If(a0, a1, a2, a3, a4, a5, a6, a7) _Py_If(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
stmt_ty _Py_If(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int
|
|
||||||
lineno, int col_offset, int end_lineno, int end_col_offset,
|
|
||||||
PyArena *arena);
|
|
||||||
#define With(a0, a1, a2, a3, a4, a5, a6, a7) _Py_With(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
stmt_ty _Py_With(asdl_withitem_seq * items, asdl_stmt_seq * body, string
|
|
||||||
type_comment, int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define AsyncWith(a0, a1, a2, a3, a4, a5, a6, a7) _Py_AsyncWith(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
stmt_ty _Py_AsyncWith(asdl_withitem_seq * items, asdl_stmt_seq * body, string
|
|
||||||
type_comment, int lineno, int col_offset, int end_lineno,
|
|
||||||
int end_col_offset, PyArena *arena);
|
|
||||||
#define Match(a0, a1, a2, a3, a4, a5, a6) _Py_Match(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
stmt_ty _Py_Match(expr_ty subject, asdl_match_case_seq * cases, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define Raise(a0, a1, a2, a3, a4, a5, a6) _Py_Raise(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
stmt_ty _Py_Raise(expr_ty exc, expr_ty cause, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Try(a0, a1, a2, a3, a4, a5, a6, a7, a8) _Py_Try(a0, a1, a2, a3, a4, a5, a6, a7, a8)
|
|
||||||
stmt_ty _Py_Try(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers,
|
|
||||||
asdl_stmt_seq * orelse, asdl_stmt_seq * finalbody, int lineno,
|
|
||||||
int col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define Assert(a0, a1, a2, a3, a4, a5, a6) _Py_Assert(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
stmt_ty _Py_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Import(a0, a1, a2, a3, a4, a5) _Py_Import(a0, a1, a2, a3, a4, a5)
|
|
||||||
stmt_ty _Py_Import(asdl_alias_seq * names, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define ImportFrom(a0, a1, a2, a3, a4, a5, a6, a7) _Py_ImportFrom(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
stmt_ty _Py_ImportFrom(identifier module, asdl_alias_seq * names, int level,
|
|
||||||
int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define Global(a0, a1, a2, a3, a4, a5) _Py_Global(a0, a1, a2, a3, a4, a5)
|
|
||||||
stmt_ty _Py_Global(asdl_identifier_seq * names, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Nonlocal(a0, a1, a2, a3, a4, a5) _Py_Nonlocal(a0, a1, a2, a3, a4, a5)
|
|
||||||
stmt_ty _Py_Nonlocal(asdl_identifier_seq * names, int lineno, int col_offset,
|
|
||||||
int end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Expr(a0, a1, a2, a3, a4, a5) _Py_Expr(a0, a1, a2, a3, a4, a5)
|
|
||||||
stmt_ty _Py_Expr(expr_ty value, int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define Pass(a0, a1, a2, a3, a4) _Py_Pass(a0, a1, a2, a3, a4)
|
|
||||||
stmt_ty _Py_Pass(int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define Break(a0, a1, a2, a3, a4) _Py_Break(a0, a1, a2, a3, a4)
|
|
||||||
stmt_ty _Py_Break(int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define Continue(a0, a1, a2, a3, a4) _Py_Continue(a0, a1, a2, a3, a4)
|
|
||||||
stmt_ty _Py_Continue(int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define BoolOp(a0, a1, a2, a3, a4, a5, a6) _Py_BoolOp(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_BoolOp(boolop_ty op, asdl_expr_seq * values, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define NamedExpr(a0, a1, a2, a3, a4, a5, a6) _Py_NamedExpr(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_NamedExpr(expr_ty target, expr_ty value, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define BinOp(a0, a1, a2, a3, a4, a5, a6, a7) _Py_BinOp(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define UnaryOp(a0, a1, a2, a3, a4, a5, a6) _Py_UnaryOp(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset,
|
|
||||||
int end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Lambda(a0, a1, a2, a3, a4, a5, a6) _Py_Lambda(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset,
|
|
||||||
int end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define IfExp(a0, a1, a2, a3, a4, a5, a6, a7) _Py_IfExp(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define Dict(a0, a1, a2, a3, a4, a5, a6) _Py_Dict(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_Dict(asdl_expr_seq * keys, asdl_expr_seq * values, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define Set(a0, a1, a2, a3, a4, a5) _Py_Set(a0, a1, a2, a3, a4, a5)
|
|
||||||
expr_ty _Py_Set(asdl_expr_seq * elts, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define ListComp(a0, a1, a2, a3, a4, a5, a6) _Py_ListComp(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int
|
|
||||||
lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define SetComp(a0, a1, a2, a3, a4, a5, a6) _Py_SetComp(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_SetComp(expr_ty elt, asdl_comprehension_seq * generators, int
|
|
||||||
lineno, int col_offset, int end_lineno, int end_col_offset,
|
|
||||||
PyArena *arena);
|
|
||||||
#define DictComp(a0, a1, a2, a3, a4, a5, a6, a7) _Py_DictComp(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq *
|
|
||||||
generators, int lineno, int col_offset, int end_lineno,
|
|
||||||
int end_col_offset, PyArena *arena);
|
|
||||||
#define GeneratorExp(a0, a1, a2, a3, a4, a5, a6) _Py_GeneratorExp(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_GeneratorExp(expr_ty elt, asdl_comprehension_seq * generators, int
|
|
||||||
lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define Await(a0, a1, a2, a3, a4, a5) _Py_Await(a0, a1, a2, a3, a4, a5)
|
|
||||||
expr_ty _Py_Await(expr_ty value, int lineno, int col_offset, int end_lineno,
|
|
||||||
int end_col_offset, PyArena *arena);
|
|
||||||
#define Yield(a0, a1, a2, a3, a4, a5) _Py_Yield(a0, a1, a2, a3, a4, a5)
|
|
||||||
expr_ty _Py_Yield(expr_ty value, int lineno, int col_offset, int end_lineno,
|
|
||||||
int end_col_offset, PyArena *arena);
|
|
||||||
#define YieldFrom(a0, a1, a2, a3, a4, a5) _Py_YieldFrom(a0, a1, a2, a3, a4, a5)
|
|
||||||
expr_ty _Py_YieldFrom(expr_ty value, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Compare(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Compare(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_Compare(expr_ty left, asdl_int_seq * ops, asdl_expr_seq *
|
|
||||||
comparators, int lineno, int col_offset, int end_lineno,
|
|
||||||
int end_col_offset, PyArena *arena);
|
|
||||||
#define Call(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Call(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_Call(expr_ty func, asdl_expr_seq * args, asdl_keyword_seq *
|
|
||||||
keywords, int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define FormattedValue(a0, a1, a2, a3, a4, a5, a6, a7) _Py_FormattedValue(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_FormattedValue(expr_ty value, int conversion, expr_ty format_spec,
|
|
||||||
int lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define JoinedStr(a0, a1, a2, a3, a4, a5) _Py_JoinedStr(a0, a1, a2, a3, a4, a5)
|
|
||||||
expr_ty _Py_JoinedStr(asdl_expr_seq * values, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Constant(a0, a1, a2, a3, a4, a5, a6) _Py_Constant(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_Constant(constant value, string kind, int lineno, int col_offset,
|
|
||||||
int end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define Attribute(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Attribute(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int
|
|
||||||
lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define Subscript(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Subscript(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int
|
|
||||||
lineno, int col_offset, int end_lineno, int
|
|
||||||
end_col_offset, PyArena *arena);
|
|
||||||
#define Starred(a0, a1, a2, a3, a4, a5, a6) _Py_Starred(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_Starred(expr_ty value, expr_context_ty ctx, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define Name(a0, a1, a2, a3, a4, a5, a6) _Py_Name(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_Name(identifier id, expr_context_ty ctx, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define List(a0, a1, a2, a3, a4, a5, a6) _Py_List(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_List(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define Tuple(a0, a1, a2, a3, a4, a5, a6) _Py_Tuple(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define Slice(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Slice(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
expr_ty _Py_Slice(expr_ty lower, expr_ty upper, expr_ty step, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define MatchAs(a0, a1, a2, a3, a4, a5, a6) _Py_MatchAs(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
expr_ty _Py_MatchAs(expr_ty pattern, identifier name, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define MatchOr(a0, a1, a2, a3, a4, a5) _Py_MatchOr(a0, a1, a2, a3, a4, a5)
|
|
||||||
expr_ty _Py_MatchOr(asdl_expr_seq * patterns, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena *arena);
|
|
||||||
#define comprehension(a0, a1, a2, a3, a4) _Py_comprehension(a0, a1, a2, a3, a4)
|
|
||||||
comprehension_ty _Py_comprehension(expr_ty target, expr_ty iter, asdl_expr_seq
|
|
||||||
* ifs, int is_async, PyArena *arena);
|
|
||||||
#define ExceptHandler(a0, a1, a2, a3, a4, a5, a6, a7) _Py_ExceptHandler(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
excepthandler_ty _Py_ExceptHandler(expr_ty type, identifier name, asdl_stmt_seq
|
|
||||||
* body, int lineno, int col_offset, int
|
|
||||||
end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define arguments(a0, a1, a2, a3, a4, a5, a6, a7) _Py_arguments(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
arguments_ty _Py_arguments(asdl_arg_seq * posonlyargs, asdl_arg_seq * args,
|
|
||||||
arg_ty vararg, asdl_arg_seq * kwonlyargs,
|
|
||||||
asdl_expr_seq * kw_defaults, arg_ty kwarg,
|
|
||||||
asdl_expr_seq * defaults, PyArena *arena);
|
|
||||||
#define arg(a0, a1, a2, a3, a4, a5, a6, a7) _Py_arg(a0, a1, a2, a3, a4, a5, a6, a7)
|
|
||||||
arg_ty _Py_arg(identifier arg, expr_ty annotation, string type_comment, int
|
|
||||||
lineno, int col_offset, int end_lineno, int end_col_offset,
|
|
||||||
PyArena *arena);
|
|
||||||
#define keyword(a0, a1, a2, a3, a4, a5, a6) _Py_keyword(a0, a1, a2, a3, a4, a5, a6)
|
|
||||||
keyword_ty _Py_keyword(identifier arg, expr_ty value, int lineno, int
|
|
||||||
col_offset, int end_lineno, int end_col_offset, PyArena
|
|
||||||
*arena);
|
|
||||||
#define alias(a0, a1, a2) _Py_alias(a0, a1, a2)
|
|
||||||
alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena);
|
|
||||||
#define withitem(a0, a1, a2) _Py_withitem(a0, a1, a2)
|
|
||||||
withitem_ty _Py_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena
|
|
||||||
*arena);
|
|
||||||
#define match_case(a0, a1, a2, a3) _Py_match_case(a0, a1, a2, a3)
|
|
||||||
match_case_ty _Py_match_case(expr_ty pattern, expr_ty guard, asdl_stmt_seq *
|
|
||||||
body, PyArena *arena);
|
|
||||||
#define TypeIgnore(a0, a1, a2) _Py_TypeIgnore(a0, a1, a2)
|
|
||||||
type_ignore_ty _Py_TypeIgnore(int lineno, string tag, PyArena *arena);
|
|
||||||
|
|
||||||
PyObject* PyAST_mod2obj(mod_ty t);
|
|
||||||
mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);
|
|
||||||
int PyAST_Check(PyObject* obj);
|
|
||||||
#endif /* !Py_LIMITED_API */
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#endif /* !Py_PYTHON_AST_H */
|
|
|
@ -1,14 +0,0 @@
|
||||||
#ifndef Py_LIMITED_API
|
|
||||||
#ifndef Py_AST_H
|
|
||||||
#define Py_AST_H
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "Python-ast.h" /* mod_ty */
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#endif /* !Py_AST_H */
|
|
||||||
#endif /* !Py_LIMITED_API */
|
|
|
@ -47,7 +47,8 @@ typedef struct {
|
||||||
#define FUTURE_GENERATOR_STOP "generator_stop"
|
#define FUTURE_GENERATOR_STOP "generator_stop"
|
||||||
#define FUTURE_ANNOTATIONS "annotations"
|
#define FUTURE_ANNOTATIONS "annotations"
|
||||||
|
|
||||||
struct _mod; /* Declare the existence of this type */
|
struct _mod; // Type defined in pycore_ast.h
|
||||||
|
|
||||||
#define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar)
|
#define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar)
|
||||||
PyAPI_FUNC(PyCodeObject *) PyAST_CompileEx(
|
PyAPI_FUNC(PyCodeObject *) PyAST_CompileEx(
|
||||||
struct _mod *mod,
|
struct _mod *mod,
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
#ifndef Py_LIMITED_API
|
#ifndef Py_INTERNAL_ASDL_H
|
||||||
#ifndef Py_ASDL_H
|
#define Py_INTERNAL_ASDL_H
|
||||||
#define Py_ASDL_H
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef Py_BUILD_CORE
|
||||||
|
# error "this header requires Py_BUILD_CORE define"
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef PyObject * identifier;
|
typedef PyObject * identifier;
|
||||||
typedef PyObject * string;
|
typedef PyObject * string;
|
||||||
|
@ -73,8 +79,9 @@ asdl_ ## NAME ## _seq *_Py_asdl_ ## NAME ## _seq_new(Py_ssize_t size, PyArena *a
|
||||||
#define asdl_seq_GET_UNTYPED(S, I) (S)->elements[(I)]
|
#define asdl_seq_GET_UNTYPED(S, I) (S)->elements[(I)]
|
||||||
#define asdl_seq_GET(S, I) (S)->typed_elements[(I)]
|
#define asdl_seq_GET(S, I) (S)->typed_elements[(I)]
|
||||||
#define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)
|
#define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)
|
||||||
|
|
||||||
#ifdef Py_DEBUG
|
#ifdef Py_DEBUG
|
||||||
#define asdl_seq_SET(S, I, V) \
|
# define asdl_seq_SET(S, I, V) \
|
||||||
do { \
|
do { \
|
||||||
Py_ssize_t _asdl_i = (I); \
|
Py_ssize_t _asdl_i = (I); \
|
||||||
assert((S) != NULL); \
|
assert((S) != NULL); \
|
||||||
|
@ -82,11 +89,11 @@ asdl_ ## NAME ## _seq *_Py_asdl_ ## NAME ## _seq_new(Py_ssize_t size, PyArena *a
|
||||||
(S)->typed_elements[_asdl_i] = (V); \
|
(S)->typed_elements[_asdl_i] = (V); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#else
|
#else
|
||||||
#define asdl_seq_SET(S, I, V) (S)->typed_elements[I] = (V)
|
# define asdl_seq_SET(S, I, V) (S)->typed_elements[I] = (V)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef Py_DEBUG
|
#ifdef Py_DEBUG
|
||||||
#define asdl_seq_SET_UNTYPED(S, I, V) \
|
# define asdl_seq_SET_UNTYPED(S, I, V) \
|
||||||
do { \
|
do { \
|
||||||
Py_ssize_t _asdl_i = (I); \
|
Py_ssize_t _asdl_i = (I); \
|
||||||
assert((S) != NULL); \
|
assert((S) != NULL); \
|
||||||
|
@ -94,8 +101,10 @@ asdl_ ## NAME ## _seq *_Py_asdl_ ## NAME ## _seq_new(Py_ssize_t size, PyArena *a
|
||||||
(S)->elements[_asdl_i] = (V); \
|
(S)->elements[_asdl_i] = (V); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#else
|
#else
|
||||||
#define asdl_seq_SET_UNTYPED(S, I, V) (S)->elements[I] = (V)
|
# define asdl_seq_SET_UNTYPED(S, I, V) (S)->elements[I] = (V)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* !Py_ASDL_H */
|
#ifdef __cplusplus
|
||||||
#endif /* Py_LIMITED_API */
|
}
|
||||||
|
#endif
|
||||||
|
#endif /* !Py_INTERNAL_ASDL_H */
|
|
@ -1,3 +1,5 @@
|
||||||
|
// File automatically generated by Parser/asdl_c.py.
|
||||||
|
|
||||||
#ifndef Py_INTERNAL_AST_H
|
#ifndef Py_INTERNAL_AST_H
|
||||||
#define Py_INTERNAL_AST_H
|
#define Py_INTERNAL_AST_H
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -8,7 +10,820 @@ extern "C" {
|
||||||
# error "this header requires Py_BUILD_CORE define"
|
# error "this header requires Py_BUILD_CORE define"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "Python-ast.h" // expr_ty
|
#include "pycore_asdl.h"
|
||||||
|
|
||||||
|
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
||||||
|
|
||||||
|
typedef struct _mod *mod_ty;
|
||||||
|
|
||||||
|
typedef struct _stmt *stmt_ty;
|
||||||
|
|
||||||
|
typedef struct _expr *expr_ty;
|
||||||
|
|
||||||
|
typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;
|
||||||
|
|
||||||
|
typedef enum _boolop { And=1, Or=2 } boolop_ty;
|
||||||
|
|
||||||
|
typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,
|
||||||
|
LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12,
|
||||||
|
FloorDiv=13 } operator_ty;
|
||||||
|
|
||||||
|
typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;
|
||||||
|
|
||||||
|
typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
|
||||||
|
In=9, NotIn=10 } cmpop_ty;
|
||||||
|
|
||||||
|
typedef struct _comprehension *comprehension_ty;
|
||||||
|
|
||||||
|
typedef struct _excepthandler *excepthandler_ty;
|
||||||
|
|
||||||
|
typedef struct _arguments *arguments_ty;
|
||||||
|
|
||||||
|
typedef struct _arg *arg_ty;
|
||||||
|
|
||||||
|
typedef struct _keyword *keyword_ty;
|
||||||
|
|
||||||
|
typedef struct _alias *alias_ty;
|
||||||
|
|
||||||
|
typedef struct _withitem *withitem_ty;
|
||||||
|
|
||||||
|
typedef struct _match_case *match_case_ty;
|
||||||
|
|
||||||
|
typedef struct _type_ignore *type_ignore_ty;
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
mod_ty typed_elements[1];
|
||||||
|
} asdl_mod_seq;
|
||||||
|
|
||||||
|
asdl_mod_seq *_Py_asdl_mod_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
stmt_ty typed_elements[1];
|
||||||
|
} asdl_stmt_seq;
|
||||||
|
|
||||||
|
asdl_stmt_seq *_Py_asdl_stmt_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
expr_ty typed_elements[1];
|
||||||
|
} asdl_expr_seq;
|
||||||
|
|
||||||
|
asdl_expr_seq *_Py_asdl_expr_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
comprehension_ty typed_elements[1];
|
||||||
|
} asdl_comprehension_seq;
|
||||||
|
|
||||||
|
asdl_comprehension_seq *_Py_asdl_comprehension_seq_new(Py_ssize_t size, PyArena
|
||||||
|
*arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
excepthandler_ty typed_elements[1];
|
||||||
|
} asdl_excepthandler_seq;
|
||||||
|
|
||||||
|
asdl_excepthandler_seq *_Py_asdl_excepthandler_seq_new(Py_ssize_t size, PyArena
|
||||||
|
*arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
arguments_ty typed_elements[1];
|
||||||
|
} asdl_arguments_seq;
|
||||||
|
|
||||||
|
asdl_arguments_seq *_Py_asdl_arguments_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
arg_ty typed_elements[1];
|
||||||
|
} asdl_arg_seq;
|
||||||
|
|
||||||
|
asdl_arg_seq *_Py_asdl_arg_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
keyword_ty typed_elements[1];
|
||||||
|
} asdl_keyword_seq;
|
||||||
|
|
||||||
|
asdl_keyword_seq *_Py_asdl_keyword_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
alias_ty typed_elements[1];
|
||||||
|
} asdl_alias_seq;
|
||||||
|
|
||||||
|
asdl_alias_seq *_Py_asdl_alias_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
withitem_ty typed_elements[1];
|
||||||
|
} asdl_withitem_seq;
|
||||||
|
|
||||||
|
asdl_withitem_seq *_Py_asdl_withitem_seq_new(Py_ssize_t size, PyArena *arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
match_case_ty typed_elements[1];
|
||||||
|
} asdl_match_case_seq;
|
||||||
|
|
||||||
|
asdl_match_case_seq *_Py_asdl_match_case_seq_new(Py_ssize_t size, PyArena
|
||||||
|
*arena);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
_ASDL_SEQ_HEAD
|
||||||
|
type_ignore_ty typed_elements[1];
|
||||||
|
} asdl_type_ignore_seq;
|
||||||
|
|
||||||
|
asdl_type_ignore_seq *_Py_asdl_type_ignore_seq_new(Py_ssize_t size, PyArena
|
||||||
|
*arena);
|
||||||
|
|
||||||
|
|
||||||
|
enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,
|
||||||
|
FunctionType_kind=4};
|
||||||
|
struct _mod {
|
||||||
|
enum _mod_kind kind;
|
||||||
|
union {
|
||||||
|
struct {
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_type_ignore_seq *type_ignores;
|
||||||
|
} Module;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
} Interactive;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty body;
|
||||||
|
} Expression;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *argtypes;
|
||||||
|
expr_ty returns;
|
||||||
|
} FunctionType;
|
||||||
|
|
||||||
|
} v;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum _stmt_kind {FunctionDef_kind=1, AsyncFunctionDef_kind=2, ClassDef_kind=3,
|
||||||
|
Return_kind=4, Delete_kind=5, Assign_kind=6,
|
||||||
|
AugAssign_kind=7, AnnAssign_kind=8, For_kind=9,
|
||||||
|
AsyncFor_kind=10, While_kind=11, If_kind=12, With_kind=13,
|
||||||
|
AsyncWith_kind=14, Match_kind=15, Raise_kind=16, Try_kind=17,
|
||||||
|
Assert_kind=18, Import_kind=19, ImportFrom_kind=20,
|
||||||
|
Global_kind=21, Nonlocal_kind=22, Expr_kind=23, Pass_kind=24,
|
||||||
|
Break_kind=25, Continue_kind=26};
|
||||||
|
struct _stmt {
|
||||||
|
enum _stmt_kind kind;
|
||||||
|
union {
|
||||||
|
struct {
|
||||||
|
identifier name;
|
||||||
|
arguments_ty args;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_expr_seq *decorator_list;
|
||||||
|
expr_ty returns;
|
||||||
|
string type_comment;
|
||||||
|
} FunctionDef;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
identifier name;
|
||||||
|
arguments_ty args;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_expr_seq *decorator_list;
|
||||||
|
expr_ty returns;
|
||||||
|
string type_comment;
|
||||||
|
} AsyncFunctionDef;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
identifier name;
|
||||||
|
asdl_expr_seq *bases;
|
||||||
|
asdl_keyword_seq *keywords;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_expr_seq *decorator_list;
|
||||||
|
} ClassDef;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
} Return;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *targets;
|
||||||
|
} Delete;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *targets;
|
||||||
|
expr_ty value;
|
||||||
|
string type_comment;
|
||||||
|
} Assign;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty target;
|
||||||
|
operator_ty op;
|
||||||
|
expr_ty value;
|
||||||
|
} AugAssign;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty target;
|
||||||
|
expr_ty annotation;
|
||||||
|
expr_ty value;
|
||||||
|
int simple;
|
||||||
|
} AnnAssign;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty target;
|
||||||
|
expr_ty iter;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_stmt_seq *orelse;
|
||||||
|
string type_comment;
|
||||||
|
} For;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty target;
|
||||||
|
expr_ty iter;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_stmt_seq *orelse;
|
||||||
|
string type_comment;
|
||||||
|
} AsyncFor;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty test;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_stmt_seq *orelse;
|
||||||
|
} While;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty test;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_stmt_seq *orelse;
|
||||||
|
} If;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_withitem_seq *items;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
string type_comment;
|
||||||
|
} With;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_withitem_seq *items;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
string type_comment;
|
||||||
|
} AsyncWith;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty subject;
|
||||||
|
asdl_match_case_seq *cases;
|
||||||
|
} Match;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty exc;
|
||||||
|
expr_ty cause;
|
||||||
|
} Raise;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
asdl_excepthandler_seq *handlers;
|
||||||
|
asdl_stmt_seq *orelse;
|
||||||
|
asdl_stmt_seq *finalbody;
|
||||||
|
} Try;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty test;
|
||||||
|
expr_ty msg;
|
||||||
|
} Assert;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_alias_seq *names;
|
||||||
|
} Import;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
identifier module;
|
||||||
|
asdl_alias_seq *names;
|
||||||
|
int level;
|
||||||
|
} ImportFrom;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_identifier_seq *names;
|
||||||
|
} Global;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_identifier_seq *names;
|
||||||
|
} Nonlocal;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
} Expr;
|
||||||
|
|
||||||
|
} v;
|
||||||
|
int lineno;
|
||||||
|
int col_offset;
|
||||||
|
int end_lineno;
|
||||||
|
int end_col_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum _expr_kind {BoolOp_kind=1, NamedExpr_kind=2, BinOp_kind=3, UnaryOp_kind=4,
|
||||||
|
Lambda_kind=5, IfExp_kind=6, Dict_kind=7, Set_kind=8,
|
||||||
|
ListComp_kind=9, SetComp_kind=10, DictComp_kind=11,
|
||||||
|
GeneratorExp_kind=12, Await_kind=13, Yield_kind=14,
|
||||||
|
YieldFrom_kind=15, Compare_kind=16, Call_kind=17,
|
||||||
|
FormattedValue_kind=18, JoinedStr_kind=19, Constant_kind=20,
|
||||||
|
Attribute_kind=21, Subscript_kind=22, Starred_kind=23,
|
||||||
|
Name_kind=24, List_kind=25, Tuple_kind=26, Slice_kind=27,
|
||||||
|
MatchAs_kind=28, MatchOr_kind=29};
|
||||||
|
struct _expr {
|
||||||
|
enum _expr_kind kind;
|
||||||
|
union {
|
||||||
|
struct {
|
||||||
|
boolop_ty op;
|
||||||
|
asdl_expr_seq *values;
|
||||||
|
} BoolOp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty target;
|
||||||
|
expr_ty value;
|
||||||
|
} NamedExpr;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty left;
|
||||||
|
operator_ty op;
|
||||||
|
expr_ty right;
|
||||||
|
} BinOp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
unaryop_ty op;
|
||||||
|
expr_ty operand;
|
||||||
|
} UnaryOp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
arguments_ty args;
|
||||||
|
expr_ty body;
|
||||||
|
} Lambda;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty test;
|
||||||
|
expr_ty body;
|
||||||
|
expr_ty orelse;
|
||||||
|
} IfExp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *keys;
|
||||||
|
asdl_expr_seq *values;
|
||||||
|
} Dict;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *elts;
|
||||||
|
} Set;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty elt;
|
||||||
|
asdl_comprehension_seq *generators;
|
||||||
|
} ListComp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty elt;
|
||||||
|
asdl_comprehension_seq *generators;
|
||||||
|
} SetComp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty key;
|
||||||
|
expr_ty value;
|
||||||
|
asdl_comprehension_seq *generators;
|
||||||
|
} DictComp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty elt;
|
||||||
|
asdl_comprehension_seq *generators;
|
||||||
|
} GeneratorExp;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
} Await;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
} Yield;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
} YieldFrom;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty left;
|
||||||
|
asdl_int_seq *ops;
|
||||||
|
asdl_expr_seq *comparators;
|
||||||
|
} Compare;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty func;
|
||||||
|
asdl_expr_seq *args;
|
||||||
|
asdl_keyword_seq *keywords;
|
||||||
|
} Call;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
int conversion;
|
||||||
|
expr_ty format_spec;
|
||||||
|
} FormattedValue;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *values;
|
||||||
|
} JoinedStr;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
constant value;
|
||||||
|
string kind;
|
||||||
|
} Constant;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
identifier attr;
|
||||||
|
expr_context_ty ctx;
|
||||||
|
} Attribute;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
expr_ty slice;
|
||||||
|
expr_context_ty ctx;
|
||||||
|
} Subscript;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty value;
|
||||||
|
expr_context_ty ctx;
|
||||||
|
} Starred;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
identifier id;
|
||||||
|
expr_context_ty ctx;
|
||||||
|
} Name;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *elts;
|
||||||
|
expr_context_ty ctx;
|
||||||
|
} List;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *elts;
|
||||||
|
expr_context_ty ctx;
|
||||||
|
} Tuple;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty lower;
|
||||||
|
expr_ty upper;
|
||||||
|
expr_ty step;
|
||||||
|
} Slice;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
expr_ty pattern;
|
||||||
|
identifier name;
|
||||||
|
} MatchAs;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
asdl_expr_seq *patterns;
|
||||||
|
} MatchOr;
|
||||||
|
|
||||||
|
} v;
|
||||||
|
int lineno;
|
||||||
|
int col_offset;
|
||||||
|
int end_lineno;
|
||||||
|
int end_col_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _comprehension {
|
||||||
|
expr_ty target;
|
||||||
|
expr_ty iter;
|
||||||
|
asdl_expr_seq *ifs;
|
||||||
|
int is_async;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum _excepthandler_kind {ExceptHandler_kind=1};
|
||||||
|
struct _excepthandler {
|
||||||
|
enum _excepthandler_kind kind;
|
||||||
|
union {
|
||||||
|
struct {
|
||||||
|
expr_ty type;
|
||||||
|
identifier name;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
} ExceptHandler;
|
||||||
|
|
||||||
|
} v;
|
||||||
|
int lineno;
|
||||||
|
int col_offset;
|
||||||
|
int end_lineno;
|
||||||
|
int end_col_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _arguments {
|
||||||
|
asdl_arg_seq *posonlyargs;
|
||||||
|
asdl_arg_seq *args;
|
||||||
|
arg_ty vararg;
|
||||||
|
asdl_arg_seq *kwonlyargs;
|
||||||
|
asdl_expr_seq *kw_defaults;
|
||||||
|
arg_ty kwarg;
|
||||||
|
asdl_expr_seq *defaults;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _arg {
|
||||||
|
identifier arg;
|
||||||
|
expr_ty annotation;
|
||||||
|
string type_comment;
|
||||||
|
int lineno;
|
||||||
|
int col_offset;
|
||||||
|
int end_lineno;
|
||||||
|
int end_col_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _keyword {
|
||||||
|
identifier arg;
|
||||||
|
expr_ty value;
|
||||||
|
int lineno;
|
||||||
|
int col_offset;
|
||||||
|
int end_lineno;
|
||||||
|
int end_col_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _alias {
|
||||||
|
identifier name;
|
||||||
|
identifier asname;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _withitem {
|
||||||
|
expr_ty context_expr;
|
||||||
|
expr_ty optional_vars;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _match_case {
|
||||||
|
expr_ty pattern;
|
||||||
|
expr_ty guard;
|
||||||
|
asdl_stmt_seq *body;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum _type_ignore_kind {TypeIgnore_kind=1};
|
||||||
|
struct _type_ignore {
|
||||||
|
enum _type_ignore_kind kind;
|
||||||
|
union {
|
||||||
|
struct {
|
||||||
|
int lineno;
|
||||||
|
string tag;
|
||||||
|
} TypeIgnore;
|
||||||
|
|
||||||
|
} v;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// Note: these macros affect function definitions, not only call sites.
|
||||||
|
#define Module(a0, a1, a2) _Py_Module(a0, a1, a2)
|
||||||
|
mod_ty _Py_Module(asdl_stmt_seq * body, asdl_type_ignore_seq * type_ignores,
|
||||||
|
PyArena *arena);
|
||||||
|
#define Interactive(a0, a1) _Py_Interactive(a0, a1)
|
||||||
|
mod_ty _Py_Interactive(asdl_stmt_seq * body, PyArena *arena);
|
||||||
|
#define Expression(a0, a1) _Py_Expression(a0, a1)
|
||||||
|
mod_ty _Py_Expression(expr_ty body, PyArena *arena);
|
||||||
|
#define FunctionType(a0, a1, a2) _Py_FunctionType(a0, a1, a2)
|
||||||
|
mod_ty _Py_FunctionType(asdl_expr_seq * argtypes, expr_ty returns, PyArena
|
||||||
|
*arena);
|
||||||
|
#define FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
|
||||||
|
stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_stmt_seq *
|
||||||
|
body, asdl_expr_seq * decorator_list, expr_ty returns,
|
||||||
|
string type_comment, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define AsyncFunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) _Py_AsyncFunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
|
||||||
|
stmt_ty _Py_AsyncFunctionDef(identifier name, arguments_ty args, asdl_stmt_seq
|
||||||
|
* body, asdl_expr_seq * decorator_list, expr_ty
|
||||||
|
returns, string type_comment, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset,
|
||||||
|
PyArena *arena);
|
||||||
|
#define ClassDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) _Py_ClassDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
||||||
|
stmt_ty _Py_ClassDef(identifier name, asdl_expr_seq * bases, asdl_keyword_seq *
|
||||||
|
keywords, asdl_stmt_seq * body, asdl_expr_seq *
|
||||||
|
decorator_list, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Return(a0, a1, a2, a3, a4, a5) _Py_Return(a0, a1, a2, a3, a4, a5)
|
||||||
|
stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, int end_lineno,
|
||||||
|
int end_col_offset, PyArena *arena);
|
||||||
|
#define Delete(a0, a1, a2, a3, a4, a5) _Py_Delete(a0, a1, a2, a3, a4, a5)
|
||||||
|
stmt_ty _Py_Delete(asdl_expr_seq * targets, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Assign(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Assign(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
stmt_ty _Py_Assign(asdl_expr_seq * targets, expr_ty value, string type_comment,
|
||||||
|
int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define AugAssign(a0, a1, a2, a3, a4, a5, a6, a7) _Py_AugAssign(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int
|
||||||
|
lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define AnnAssign(a0, a1, a2, a3, a4, a5, a6, a7, a8) _Py_AnnAssign(a0, a1, a2, a3, a4, a5, a6, a7, a8)
|
||||||
|
stmt_ty _Py_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int
|
||||||
|
simple, int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define For(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) _Py_For(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
||||||
|
stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_stmt_seq * body,
|
||||||
|
asdl_stmt_seq * orelse, string type_comment, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define AsyncFor(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) _Py_AsyncFor(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
||||||
|
stmt_ty _Py_AsyncFor(expr_ty target, expr_ty iter, asdl_stmt_seq * body,
|
||||||
|
asdl_stmt_seq * orelse, string type_comment, int lineno,
|
||||||
|
int col_offset, int end_lineno, int end_col_offset,
|
||||||
|
PyArena *arena);
|
||||||
|
#define While(a0, a1, a2, a3, a4, a5, a6, a7) _Py_While(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
stmt_ty _Py_While(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse,
|
||||||
|
int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define If(a0, a1, a2, a3, a4, a5, a6, a7) _Py_If(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
stmt_ty _Py_If(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int
|
||||||
|
lineno, int col_offset, int end_lineno, int end_col_offset,
|
||||||
|
PyArena *arena);
|
||||||
|
#define With(a0, a1, a2, a3, a4, a5, a6, a7) _Py_With(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
stmt_ty _Py_With(asdl_withitem_seq * items, asdl_stmt_seq * body, string
|
||||||
|
type_comment, int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define AsyncWith(a0, a1, a2, a3, a4, a5, a6, a7) _Py_AsyncWith(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
stmt_ty _Py_AsyncWith(asdl_withitem_seq * items, asdl_stmt_seq * body, string
|
||||||
|
type_comment, int lineno, int col_offset, int end_lineno,
|
||||||
|
int end_col_offset, PyArena *arena);
|
||||||
|
#define Match(a0, a1, a2, a3, a4, a5, a6) _Py_Match(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
stmt_ty _Py_Match(expr_ty subject, asdl_match_case_seq * cases, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define Raise(a0, a1, a2, a3, a4, a5, a6) _Py_Raise(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
stmt_ty _Py_Raise(expr_ty exc, expr_ty cause, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Try(a0, a1, a2, a3, a4, a5, a6, a7, a8) _Py_Try(a0, a1, a2, a3, a4, a5, a6, a7, a8)
|
||||||
|
stmt_ty _Py_Try(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers,
|
||||||
|
asdl_stmt_seq * orelse, asdl_stmt_seq * finalbody, int lineno,
|
||||||
|
int col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define Assert(a0, a1, a2, a3, a4, a5, a6) _Py_Assert(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
stmt_ty _Py_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Import(a0, a1, a2, a3, a4, a5) _Py_Import(a0, a1, a2, a3, a4, a5)
|
||||||
|
stmt_ty _Py_Import(asdl_alias_seq * names, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define ImportFrom(a0, a1, a2, a3, a4, a5, a6, a7) _Py_ImportFrom(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
stmt_ty _Py_ImportFrom(identifier module, asdl_alias_seq * names, int level,
|
||||||
|
int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define Global(a0, a1, a2, a3, a4, a5) _Py_Global(a0, a1, a2, a3, a4, a5)
|
||||||
|
stmt_ty _Py_Global(asdl_identifier_seq * names, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Nonlocal(a0, a1, a2, a3, a4, a5) _Py_Nonlocal(a0, a1, a2, a3, a4, a5)
|
||||||
|
stmt_ty _Py_Nonlocal(asdl_identifier_seq * names, int lineno, int col_offset,
|
||||||
|
int end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Expr(a0, a1, a2, a3, a4, a5) _Py_Expr(a0, a1, a2, a3, a4, a5)
|
||||||
|
stmt_ty _Py_Expr(expr_ty value, int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define Pass(a0, a1, a2, a3, a4) _Py_Pass(a0, a1, a2, a3, a4)
|
||||||
|
stmt_ty _Py_Pass(int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define Break(a0, a1, a2, a3, a4) _Py_Break(a0, a1, a2, a3, a4)
|
||||||
|
stmt_ty _Py_Break(int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define Continue(a0, a1, a2, a3, a4) _Py_Continue(a0, a1, a2, a3, a4)
|
||||||
|
stmt_ty _Py_Continue(int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define BoolOp(a0, a1, a2, a3, a4, a5, a6) _Py_BoolOp(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_BoolOp(boolop_ty op, asdl_expr_seq * values, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define NamedExpr(a0, a1, a2, a3, a4, a5, a6) _Py_NamedExpr(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_NamedExpr(expr_ty target, expr_ty value, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define BinOp(a0, a1, a2, a3, a4, a5, a6, a7) _Py_BinOp(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define UnaryOp(a0, a1, a2, a3, a4, a5, a6) _Py_UnaryOp(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset,
|
||||||
|
int end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Lambda(a0, a1, a2, a3, a4, a5, a6) _Py_Lambda(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset,
|
||||||
|
int end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define IfExp(a0, a1, a2, a3, a4, a5, a6, a7) _Py_IfExp(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define Dict(a0, a1, a2, a3, a4, a5, a6) _Py_Dict(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_Dict(asdl_expr_seq * keys, asdl_expr_seq * values, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define Set(a0, a1, a2, a3, a4, a5) _Py_Set(a0, a1, a2, a3, a4, a5)
|
||||||
|
expr_ty _Py_Set(asdl_expr_seq * elts, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define ListComp(a0, a1, a2, a3, a4, a5, a6) _Py_ListComp(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int
|
||||||
|
lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define SetComp(a0, a1, a2, a3, a4, a5, a6) _Py_SetComp(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_SetComp(expr_ty elt, asdl_comprehension_seq * generators, int
|
||||||
|
lineno, int col_offset, int end_lineno, int end_col_offset,
|
||||||
|
PyArena *arena);
|
||||||
|
#define DictComp(a0, a1, a2, a3, a4, a5, a6, a7) _Py_DictComp(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq *
|
||||||
|
generators, int lineno, int col_offset, int end_lineno,
|
||||||
|
int end_col_offset, PyArena *arena);
|
||||||
|
#define GeneratorExp(a0, a1, a2, a3, a4, a5, a6) _Py_GeneratorExp(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_GeneratorExp(expr_ty elt, asdl_comprehension_seq * generators, int
|
||||||
|
lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define Await(a0, a1, a2, a3, a4, a5) _Py_Await(a0, a1, a2, a3, a4, a5)
|
||||||
|
expr_ty _Py_Await(expr_ty value, int lineno, int col_offset, int end_lineno,
|
||||||
|
int end_col_offset, PyArena *arena);
|
||||||
|
#define Yield(a0, a1, a2, a3, a4, a5) _Py_Yield(a0, a1, a2, a3, a4, a5)
|
||||||
|
expr_ty _Py_Yield(expr_ty value, int lineno, int col_offset, int end_lineno,
|
||||||
|
int end_col_offset, PyArena *arena);
|
||||||
|
#define YieldFrom(a0, a1, a2, a3, a4, a5) _Py_YieldFrom(a0, a1, a2, a3, a4, a5)
|
||||||
|
expr_ty _Py_YieldFrom(expr_ty value, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Compare(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Compare(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_Compare(expr_ty left, asdl_int_seq * ops, asdl_expr_seq *
|
||||||
|
comparators, int lineno, int col_offset, int end_lineno,
|
||||||
|
int end_col_offset, PyArena *arena);
|
||||||
|
#define Call(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Call(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_Call(expr_ty func, asdl_expr_seq * args, asdl_keyword_seq *
|
||||||
|
keywords, int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define FormattedValue(a0, a1, a2, a3, a4, a5, a6, a7) _Py_FormattedValue(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_FormattedValue(expr_ty value, int conversion, expr_ty format_spec,
|
||||||
|
int lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define JoinedStr(a0, a1, a2, a3, a4, a5) _Py_JoinedStr(a0, a1, a2, a3, a4, a5)
|
||||||
|
expr_ty _Py_JoinedStr(asdl_expr_seq * values, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Constant(a0, a1, a2, a3, a4, a5, a6) _Py_Constant(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_Constant(constant value, string kind, int lineno, int col_offset,
|
||||||
|
int end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define Attribute(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Attribute(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int
|
||||||
|
lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define Subscript(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Subscript(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int
|
||||||
|
lineno, int col_offset, int end_lineno, int
|
||||||
|
end_col_offset, PyArena *arena);
|
||||||
|
#define Starred(a0, a1, a2, a3, a4, a5, a6) _Py_Starred(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_Starred(expr_ty value, expr_context_ty ctx, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define Name(a0, a1, a2, a3, a4, a5, a6) _Py_Name(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_Name(identifier id, expr_context_ty ctx, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define List(a0, a1, a2, a3, a4, a5, a6) _Py_List(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_List(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define Tuple(a0, a1, a2, a3, a4, a5, a6) _Py_Tuple(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define Slice(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Slice(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
expr_ty _Py_Slice(expr_ty lower, expr_ty upper, expr_ty step, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define MatchAs(a0, a1, a2, a3, a4, a5, a6) _Py_MatchAs(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
expr_ty _Py_MatchAs(expr_ty pattern, identifier name, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define MatchOr(a0, a1, a2, a3, a4, a5) _Py_MatchOr(a0, a1, a2, a3, a4, a5)
|
||||||
|
expr_ty _Py_MatchOr(asdl_expr_seq * patterns, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena *arena);
|
||||||
|
#define comprehension(a0, a1, a2, a3, a4) _Py_comprehension(a0, a1, a2, a3, a4)
|
||||||
|
comprehension_ty _Py_comprehension(expr_ty target, expr_ty iter, asdl_expr_seq
|
||||||
|
* ifs, int is_async, PyArena *arena);
|
||||||
|
#define ExceptHandler(a0, a1, a2, a3, a4, a5, a6, a7) _Py_ExceptHandler(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
excepthandler_ty _Py_ExceptHandler(expr_ty type, identifier name, asdl_stmt_seq
|
||||||
|
* body, int lineno, int col_offset, int
|
||||||
|
end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define arguments(a0, a1, a2, a3, a4, a5, a6, a7) _Py_arguments(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
arguments_ty _Py_arguments(asdl_arg_seq * posonlyargs, asdl_arg_seq * args,
|
||||||
|
arg_ty vararg, asdl_arg_seq * kwonlyargs,
|
||||||
|
asdl_expr_seq * kw_defaults, arg_ty kwarg,
|
||||||
|
asdl_expr_seq * defaults, PyArena *arena);
|
||||||
|
#define arg(a0, a1, a2, a3, a4, a5, a6, a7) _Py_arg(a0, a1, a2, a3, a4, a5, a6, a7)
|
||||||
|
arg_ty _Py_arg(identifier arg, expr_ty annotation, string type_comment, int
|
||||||
|
lineno, int col_offset, int end_lineno, int end_col_offset,
|
||||||
|
PyArena *arena);
|
||||||
|
#define keyword(a0, a1, a2, a3, a4, a5, a6) _Py_keyword(a0, a1, a2, a3, a4, a5, a6)
|
||||||
|
keyword_ty _Py_keyword(identifier arg, expr_ty value, int lineno, int
|
||||||
|
col_offset, int end_lineno, int end_col_offset, PyArena
|
||||||
|
*arena);
|
||||||
|
#define alias(a0, a1, a2) _Py_alias(a0, a1, a2)
|
||||||
|
alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena);
|
||||||
|
#define withitem(a0, a1, a2) _Py_withitem(a0, a1, a2)
|
||||||
|
withitem_ty _Py_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena
|
||||||
|
*arena);
|
||||||
|
#define match_case(a0, a1, a2, a3) _Py_match_case(a0, a1, a2, a3)
|
||||||
|
match_case_ty _Py_match_case(expr_ty pattern, expr_ty guard, asdl_stmt_seq *
|
||||||
|
body, PyArena *arena);
|
||||||
|
#define TypeIgnore(a0, a1, a2) _Py_TypeIgnore(a0, a1, a2)
|
||||||
|
type_ignore_ty _Py_TypeIgnore(int lineno, string tag, PyArena *arena);
|
||||||
|
|
||||||
|
|
||||||
|
PyObject* PyAST_mod2obj(mod_ty t);
|
||||||
|
mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);
|
||||||
|
int PyAST_Check(PyObject* obj);
|
||||||
|
|
||||||
extern int _PyAST_Validate(mod_ty);
|
extern int _PyAST_Validate(mod_ty);
|
||||||
|
|
||||||
|
@ -24,4 +839,3 @@ extern PyObject* _PyAST_GetDocString(asdl_stmt_seq *);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* !Py_INTERNAL_AST_H */
|
#endif /* !Py_INTERNAL_AST_H */
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ extern "C" {
|
||||||
# error "this header requires Py_BUILD_CORE define"
|
# error "this header requires Py_BUILD_CORE define"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "Python-ast.h" /* mod_ty */
|
struct _mod; // Type defined in pycore_ast.h
|
||||||
|
|
||||||
typedef enum _block_type { FunctionBlock, ClassBlock, ModuleBlock }
|
typedef enum _block_type { FunctionBlock, ClassBlock, ModuleBlock }
|
||||||
_Py_block_ty;
|
_Py_block_ty;
|
||||||
|
@ -74,7 +74,7 @@ extern PyTypeObject PySTEntry_Type;
|
||||||
extern int _PyST_GetScope(PySTEntryObject *, PyObject *);
|
extern int _PyST_GetScope(PySTEntryObject *, PyObject *);
|
||||||
|
|
||||||
extern struct symtable* _PySymtable_Build(
|
extern struct symtable* _PySymtable_Build(
|
||||||
mod_ty mod,
|
struct _mod *mod,
|
||||||
PyObject *filename,
|
PyObject *filename,
|
||||||
PyFutureFeatures *future);
|
PyFutureFeatures *future);
|
||||||
PyAPI_FUNC(PySTEntryObject *) PySymtable_Lookup(struct symtable *, void *);
|
PyAPI_FUNC(PySTEntryObject *) PySymtable_Lookup(struct symtable *, void *);
|
||||||
|
|
|
@ -849,16 +849,19 @@ regen-pegen:
|
||||||
|
|
||||||
.PHONY=regen-ast
|
.PHONY=regen-ast
|
||||||
regen-ast:
|
regen-ast:
|
||||||
# Regenerate Include/Python-ast.h and Python/Python-ast.c using Parser/asdl_c.py
|
# Regenerate 3 files using using Parser/asdl_c.py:
|
||||||
|
# - Include/internal/pycore_ast.h
|
||||||
|
# - Include/internal/pycore_ast_state.h
|
||||||
|
# - Python/Python-ast.c
|
||||||
$(MKDIR_P) $(srcdir)/Include
|
$(MKDIR_P) $(srcdir)/Include
|
||||||
$(MKDIR_P) $(srcdir)/Python
|
$(MKDIR_P) $(srcdir)/Python
|
||||||
$(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
|
$(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
|
||||||
$(srcdir)/Parser/Python.asdl \
|
$(srcdir)/Parser/Python.asdl \
|
||||||
-H $(srcdir)/Include/Python-ast.h.new \
|
-H $(srcdir)/Include/internal/pycore_ast.h.new \
|
||||||
-I $(srcdir)/Include/internal/pycore_ast_state.h.new \
|
-I $(srcdir)/Include/internal/pycore_ast_state.h.new \
|
||||||
-C $(srcdir)/Python/Python-ast.c.new
|
-C $(srcdir)/Python/Python-ast.c.new
|
||||||
|
|
||||||
$(UPDATE_FILE) $(srcdir)/Include/Python-ast.h $(srcdir)/Include/Python-ast.h.new
|
$(UPDATE_FILE) $(srcdir)/Include/internal/pycore_ast.h $(srcdir)/Include/internal/pycore_ast.h.new
|
||||||
$(UPDATE_FILE) $(srcdir)/Include/internal/pycore_ast_state.h $(srcdir)/Include/internal/pycore_ast_state.h.new
|
$(UPDATE_FILE) $(srcdir)/Include/internal/pycore_ast_state.h $(srcdir)/Include/internal/pycore_ast_state.h.new
|
||||||
$(UPDATE_FILE) $(srcdir)/Python/Python-ast.c $(srcdir)/Python/Python-ast.c.new
|
$(UPDATE_FILE) $(srcdir)/Python/Python-ast.c $(srcdir)/Python/Python-ast.c.new
|
||||||
|
|
||||||
|
@ -922,7 +925,7 @@ regen-stdlib-module-names: build_all Programs/_testembed
|
||||||
> $(srcdir)/Python/stdlib_module_names.h.new
|
> $(srcdir)/Python/stdlib_module_names.h.new
|
||||||
$(UPDATE_FILE) $(srcdir)/Python/stdlib_module_names.h $(srcdir)/Python/stdlib_module_names.h.new
|
$(UPDATE_FILE) $(srcdir)/Python/stdlib_module_names.h $(srcdir)/Python/stdlib_module_names.h.new
|
||||||
|
|
||||||
Python/compile.o Python/symtable.o Python/ast_unparse.o Python/ast.o Python/future.o: $(srcdir)/Include/Python-ast.h
|
Python/compile.o Python/symtable.o Python/ast_unparse.o Python/ast.o Python/future.o: $(srcdir)/Include/internal/pycore_ast.h
|
||||||
|
|
||||||
Python/getplatform.o: $(srcdir)/Python/getplatform.c
|
Python/getplatform.o: $(srcdir)/Python/getplatform.c
|
||||||
$(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
|
$(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
|
||||||
|
@ -1020,8 +1023,6 @@ regen-typeslots:
|
||||||
PYTHON_HEADERS= \
|
PYTHON_HEADERS= \
|
||||||
$(srcdir)/Include/Python.h \
|
$(srcdir)/Include/Python.h \
|
||||||
$(srcdir)/Include/abstract.h \
|
$(srcdir)/Include/abstract.h \
|
||||||
$(srcdir)/Include/asdl.h \
|
|
||||||
$(srcdir)/Include/ast.h \
|
|
||||||
$(srcdir)/Include/bltinmodule.h \
|
$(srcdir)/Include/bltinmodule.h \
|
||||||
$(srcdir)/Include/boolobject.h \
|
$(srcdir)/Include/boolobject.h \
|
||||||
$(srcdir)/Include/bytearrayobject.h \
|
$(srcdir)/Include/bytearrayobject.h \
|
||||||
|
@ -1098,7 +1099,6 @@ PYTHON_HEADERS= \
|
||||||
\
|
\
|
||||||
pyconfig.h \
|
pyconfig.h \
|
||||||
$(PARSER_HEADERS) \
|
$(PARSER_HEADERS) \
|
||||||
$(srcdir)/Include/Python-ast.h \
|
|
||||||
\
|
\
|
||||||
$(srcdir)/Include/cpython/abstract.h \
|
$(srcdir)/Include/cpython/abstract.h \
|
||||||
$(srcdir)/Include/cpython/bytearrayobject.h \
|
$(srcdir)/Include/cpython/bytearrayobject.h \
|
||||||
|
@ -1136,6 +1136,7 @@ PYTHON_HEADERS= \
|
||||||
\
|
\
|
||||||
$(srcdir)/Include/internal/pycore_abstract.h \
|
$(srcdir)/Include/internal/pycore_abstract.h \
|
||||||
$(srcdir)/Include/internal/pycore_accu.h \
|
$(srcdir)/Include/internal/pycore_accu.h \
|
||||||
|
$(srcdir)/Include/internal/pycore_asdl.h \
|
||||||
$(srcdir)/Include/internal/pycore_ast.h \
|
$(srcdir)/Include/internal/pycore_ast.h \
|
||||||
$(srcdir)/Include/internal/pycore_ast_state.h \
|
$(srcdir)/Include/internal/pycore_ast_state.h \
|
||||||
$(srcdir)/Include/internal/pycore_atomic.h \
|
$(srcdir)/Include/internal/pycore_atomic.h \
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
Remove ``ast.h``, ``asdl.h``, and ``Python-ast.h`` header files.
|
||||||
|
These functions were undocumented and excluded from the limited C API.
|
||||||
|
Most names defined by these header files were not prefixed by ``Py`` and so
|
||||||
|
could create names conflicts. For example, ``Python-ast.h`` defined a ``Yield``
|
||||||
|
macro which was conflict with the ``Yield`` name used by the Windows
|
||||||
|
``<winbase.h>`` header.
|
||||||
|
Use the Python :mod:`ast` module instead.
|
||||||
|
Patch by Victor Stinner.
|
|
@ -1,6 +1,4 @@
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
|
|
||||||
#include "Python-ast.h"
|
|
||||||
#include "pycore_symtable.h" // struct symtable
|
#include "pycore_symtable.h" // struct symtable
|
||||||
|
|
||||||
#include "clinic/symtablemodule.c.h"
|
#include "clinic/symtablemodule.c.h"
|
||||||
|
|
|
@ -110,11 +110,8 @@
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\Include\Python-ast.h" />
|
|
||||||
<ClInclude Include="..\Include\Python.h" />
|
<ClInclude Include="..\Include\Python.h" />
|
||||||
<ClInclude Include="..\Include\abstract.h" />
|
<ClInclude Include="..\Include\abstract.h" />
|
||||||
<ClInclude Include="..\Include\asdl.h" />
|
|
||||||
<ClInclude Include="..\Include\ast.h" />
|
|
||||||
<ClInclude Include="..\Include\boolobject.h" />
|
<ClInclude Include="..\Include\boolobject.h" />
|
||||||
<ClInclude Include="..\Include\bytearrayobject.h" />
|
<ClInclude Include="..\Include\bytearrayobject.h" />
|
||||||
<ClInclude Include="..\Include\bytesobject.h" />
|
<ClInclude Include="..\Include\bytesobject.h" />
|
||||||
|
@ -176,6 +173,7 @@
|
||||||
<ClInclude Include="..\Include\import.h" />
|
<ClInclude Include="..\Include\import.h" />
|
||||||
<ClInclude Include="..\Include\internal\pycore_abstract.h" />
|
<ClInclude Include="..\Include\internal\pycore_abstract.h" />
|
||||||
<ClInclude Include="..\Include\internal\pycore_accu.h" />
|
<ClInclude Include="..\Include\internal\pycore_accu.h" />
|
||||||
|
<ClInclude Include="..\Include\internal\pycore_asdl.h" />
|
||||||
<ClInclude Include="..\Include\internal\pycore_ast.h" />
|
<ClInclude Include="..\Include\internal\pycore_ast.h" />
|
||||||
<ClInclude Include="..\Include\internal\pycore_ast_state.h" />
|
<ClInclude Include="..\Include\internal\pycore_ast_state.h" />
|
||||||
<ClInclude Include="..\Include\internal\pycore_atomic.h" />
|
<ClInclude Include="..\Include\internal\pycore_atomic.h" />
|
||||||
|
|
|
@ -42,12 +42,6 @@
|
||||||
<ClInclude Include="..\Include\abstract.h">
|
<ClInclude Include="..\Include\abstract.h">
|
||||||
<Filter>Include</Filter>
|
<Filter>Include</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\Include\asdl.h">
|
|
||||||
<Filter>Include</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\Include\ast.h">
|
|
||||||
<Filter>Include</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\Include\boolobject.h">
|
<ClInclude Include="..\Include\boolobject.h">
|
||||||
<Filter>Include</Filter>
|
<Filter>Include</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
@ -210,9 +204,6 @@
|
||||||
<ClInclude Include="..\Include\pystrhex.h">
|
<ClInclude Include="..\Include\pystrhex.h">
|
||||||
<Filter>Include</Filter>
|
<Filter>Include</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\Include\Python-ast.h">
|
|
||||||
<Filter>Include</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\Include\Python.h">
|
<ClInclude Include="..\Include\Python.h">
|
||||||
<Filter>Include</Filter>
|
<Filter>Include</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
@ -489,6 +480,9 @@
|
||||||
<ClInclude Include="..\Include\internal\pycore_accu.h">
|
<ClInclude Include="..\Include\internal\pycore_accu.h">
|
||||||
<Filter>Include\internal</Filter>
|
<Filter>Include\internal</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\Include\internal\pycore_asdl.h">
|
||||||
|
<Filter>Include\internal</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\Include\internal\pycore_ast.h">
|
<ClInclude Include="..\Include\internal\pycore_ast.h">
|
||||||
<Filter>Include\internal</Filter>
|
<Filter>Include\internal</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
|
|
@ -139,7 +139,7 @@
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\Include\internal\pycore_ast_state.h">
|
<None Include="..\Include\internal\pycore_ast_state.h">
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\Include\Python-ast.h">
|
<None Include="..\Include\internal\pycore_ast.h">
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\Python\Python-ast.c">
|
<None Include="..\Python\Python-ast.c">
|
||||||
</None>
|
</None>
|
||||||
|
@ -163,9 +163,9 @@
|
||||||
<Warning Text="Pegen updated. You will need to rebuild pythoncore to see the changes." Condition="'@(_UpdatedParse)' != ''" />
|
<Warning Text="Pegen updated. You will need to rebuild pythoncore to see the changes." Condition="'@(_UpdatedParse)' != ''" />
|
||||||
</Target>
|
</Target>
|
||||||
<Target Name="_RegenAST_H" AfterTargets="_RegenGrammar">
|
<Target Name="_RegenAST_H" AfterTargets="_RegenGrammar">
|
||||||
<!-- Regenerate Include/Python-ast.h, Python/Python-ast.c and Include/internal/pycore_ast_state.h using Parser/asdl_c.py -h -->
|
<!-- Regenerate Include/internal/pycore_ast.h, Python/Python-ast.c and Include/internal/pycore_ast_state.h using Parser/asdl_c.py -h -->
|
||||||
<Exec Command=""$(PythonExe)" "$(PySourcePath)Parser\asdl_c.py" "$(PySourcePath)Parser\Python.asdl" -H "$(IntDir)Python-ast.h" -C "$(IntDir)Python-ast.c" -I "$(IntDir)pycore_ast_state.h"" />
|
<Exec Command=""$(PythonExe)" "$(PySourcePath)Parser\asdl_c.py" "$(PySourcePath)Parser\Python.asdl" -H "$(IntDir)pycore_ast.h" -C "$(IntDir)Python-ast.c" -I "$(IntDir)pycore_ast_state.h"" />
|
||||||
<Copy SourceFiles="$(IntDir)Python-ast.h" DestinationFiles="$(PySourcePath)Include\Python-ast.h">
|
<Copy SourceFiles="$(IntDir)pycore_ast.h" DestinationFiles="$(PySourcePath)Include\internal\pycore_ast.h">
|
||||||
<Output TaskParameter="CopiedFiles" ItemName="_UpdatedH" />
|
<Output TaskParameter="CopiedFiles" ItemName="_UpdatedH" />
|
||||||
</Copy>
|
</Copy>
|
||||||
<Copy SourceFiles="$(IntDir)Python-ast.c" DestinationFiles="$(PySourcePath)Python\Python-ast.c">
|
<Copy SourceFiles="$(IntDir)Python-ast.c" DestinationFiles="$(PySourcePath)Python\Python-ast.c">
|
||||||
|
@ -208,7 +208,7 @@
|
||||||
<Clean Include="$(IntDir)keyword.py" />
|
<Clean Include="$(IntDir)keyword.py" />
|
||||||
<Clean Include="$(IntDir)opcode.h" />
|
<Clean Include="$(IntDir)opcode.h" />
|
||||||
<Clean Include="$(IntDir)Python-ast.c" />
|
<Clean Include="$(IntDir)Python-ast.c" />
|
||||||
<Clean Include="$(IntDir)Python-ast.h" />
|
<Clean Include="$(IntDir)pycore_ast.h" />
|
||||||
<Clean Include="$(IntDir)pycore_ast_state.h" />
|
<Clean Include="$(IntDir)pycore_ast_state.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
|
@ -1445,13 +1445,12 @@ get_ast_state(void)
|
||||||
}
|
}
|
||||||
""")
|
""")
|
||||||
|
|
||||||
# f-string for {mod.name}
|
print(textwrap.dedent("""
|
||||||
f.write(f"""
|
// Include pycore_ast.h after pycore_interp.h to avoid conflicts
|
||||||
// Include {mod.name}-ast.h after pycore_interp.h to avoid conflicts
|
// with the Yield macro redefined by <winbase.h>
|
||||||
// with the Yield macro redefined by <winbase.h>
|
#include "pycore_ast.h"
|
||||||
#include "{mod.name}-ast.h"
|
#include "structmember.h"
|
||||||
#include "structmember.h"
|
""").rstrip(), file=f)
|
||||||
""")
|
|
||||||
|
|
||||||
generate_ast_fini(module_state, f)
|
generate_ast_fini(module_state, f)
|
||||||
|
|
||||||
|
@ -1465,33 +1464,49 @@ get_ast_state(void)
|
||||||
f.write('};\n\n')
|
f.write('};\n\n')
|
||||||
|
|
||||||
def write_header(mod, f):
|
def write_header(mod, f):
|
||||||
f.write('#ifndef Py_PYTHON_AST_H\n')
|
f.write(textwrap.dedent("""
|
||||||
f.write('#define Py_PYTHON_AST_H\n')
|
#ifndef Py_INTERNAL_AST_H
|
||||||
f.write('#ifdef __cplusplus\n')
|
#define Py_INTERNAL_AST_H
|
||||||
f.write('extern "C" {\n')
|
#ifdef __cplusplus
|
||||||
f.write('#endif\n')
|
extern "C" {
|
||||||
f.write('\n')
|
#endif
|
||||||
f.write('#ifndef Py_LIMITED_API\n')
|
|
||||||
f.write('#include "asdl.h"\n')
|
#ifndef Py_BUILD_CORE
|
||||||
f.write('\n')
|
# error "this header requires Py_BUILD_CORE define"
|
||||||
f.write('#undef Yield /* undefine macro conflicting with <winbase.h> */\n')
|
#endif
|
||||||
f.write('\n')
|
|
||||||
|
#include "pycore_asdl.h"
|
||||||
|
|
||||||
|
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
||||||
|
|
||||||
|
""").lstrip())
|
||||||
c = ChainOfVisitors(TypeDefVisitor(f),
|
c = ChainOfVisitors(TypeDefVisitor(f),
|
||||||
SequenceDefVisitor(f),
|
SequenceDefVisitor(f),
|
||||||
StructVisitor(f))
|
StructVisitor(f))
|
||||||
c.visit(mod)
|
c.visit(mod)
|
||||||
f.write("// Note: these macros affect function definitions, not only call sites.\n")
|
f.write("// Note: these macros affect function definitions, not only call sites.\n")
|
||||||
PrototypeVisitor(f).visit(mod)
|
PrototypeVisitor(f).visit(mod)
|
||||||
f.write("\n")
|
f.write(textwrap.dedent("""
|
||||||
f.write("PyObject* PyAST_mod2obj(mod_ty t);\n")
|
|
||||||
f.write("mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);\n")
|
PyObject* PyAST_mod2obj(mod_ty t);
|
||||||
f.write("int PyAST_Check(PyObject* obj);\n")
|
mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);
|
||||||
f.write("#endif /* !Py_LIMITED_API */\n")
|
int PyAST_Check(PyObject* obj);
|
||||||
f.write('\n')
|
|
||||||
f.write('#ifdef __cplusplus\n')
|
extern int _PyAST_Validate(mod_ty);
|
||||||
f.write('}\n')
|
|
||||||
f.write('#endif\n')
|
/* _PyAST_ExprAsUnicode is defined in ast_unparse.c */
|
||||||
f.write('#endif /* !Py_PYTHON_AST_H */\n')
|
extern PyObject* _PyAST_ExprAsUnicode(expr_ty);
|
||||||
|
|
||||||
|
/* Return the borrowed reference to the first literal string in the
|
||||||
|
sequence of statements or NULL if it doesn't start from a literal string.
|
||||||
|
Doesn't set exception. */
|
||||||
|
extern PyObject* _PyAST_GetDocString(asdl_stmt_seq *);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#endif /* !Py_INTERNAL_AST_H */
|
||||||
|
"""))
|
||||||
|
|
||||||
|
|
||||||
def write_internal_h_header(mod, f):
|
def write_internal_h_header(mod, f):
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
#include "pegen.h"
|
#include "pegen.h"
|
||||||
#include "string_parser.h"
|
#include "string_parser.h"
|
||||||
#include "ast.h"
|
|
||||||
|
|
||||||
PyObject *
|
PyObject *
|
||||||
_PyPegen_new_type_comment(Parser *p, char *s)
|
_PyPegen_new_type_comment(Parser *p, char *s)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#define PY_SSIZE_T_CLEAN
|
#define PY_SSIZE_T_CLEAN
|
||||||
#include <Python.h>
|
#include <Python.h>
|
||||||
#include <token.h>
|
#include <token.h>
|
||||||
#include <Python-ast.h>
|
#include <pycore_ast.h>
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#define PyPARSE_YIELD_IS_KEYWORD 0x0001
|
#define PyPARSE_YIELD_IS_KEYWORD 0x0001
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#define STRINGS_H
|
#define STRINGS_H
|
||||||
|
|
||||||
#include <Python.h>
|
#include <Python.h>
|
||||||
#include <Python-ast.h>
|
#include <pycore_ast.h>
|
||||||
#include "pegen.h"
|
#include "pegen.h"
|
||||||
|
|
||||||
#define EXPRLIST_N_CACHED 64
|
#define EXPRLIST_N_CACHED 64
|
||||||
|
|
|
@ -24,9 +24,9 @@ get_ast_state(void)
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Include Python-ast.h after pycore_interp.h to avoid conflicts
|
// Include pycore_ast.h after pycore_interp.h to avoid conflicts
|
||||||
// with the Yield macro redefined by <winbase.h>
|
// with the Yield macro redefined by <winbase.h>
|
||||||
#include "Python-ast.h"
|
#include "pycore_ast.h"
|
||||||
#include "structmember.h"
|
#include "structmember.h"
|
||||||
|
|
||||||
void _PyAST_Fini(PyInterpreterState *interp)
|
void _PyAST_Fini(PyInterpreterState *interp)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
#include "asdl.h"
|
#include "pycore_asdl.h"
|
||||||
|
|
||||||
GENERATE_ASDL_SEQ_CONSTRUCTOR(generic, void*);
|
GENERATE_ASDL_SEQ_CONSTRUCTOR(generic, void*);
|
||||||
GENERATE_ASDL_SEQ_CONSTRUCTOR(identifier, PyObject*);
|
GENERATE_ASDL_SEQ_CONSTRUCTOR(identifier, PyObject*);
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
* of the given abstract syntax tree (potentially constructed manually).
|
* of the given abstract syntax tree (potentially constructed manually).
|
||||||
*/
|
*/
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
#include "Python-ast.h"
|
#include "pycore_ast.h" // asdl_stmt_seq
|
||||||
#include "ast.h"
|
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include <float.h> /* DBL_MAX_10_EXP */
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
#include "Python-ast.h"
|
#include "pycore_ast.h" // expr_ty
|
||||||
|
#include <float.h> // DBL_MAX_10_EXP
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
static PyObject *_str_open_br;
|
static PyObject *_str_open_br;
|
||||||
static PyObject *_str_dbl_open_br;
|
static PyObject *_str_dbl_open_br;
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
|
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include "ast.h"
|
|
||||||
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
|
||||||
#include "pycore_ast.h" // _PyAST_Validate()
|
#include "pycore_ast.h" // _PyAST_Validate()
|
||||||
|
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
||||||
#include "pycore_object.h" // _Py_AddToAllObjects()
|
#include "pycore_object.h" // _Py_AddToAllObjects()
|
||||||
#include "pycore_pyerrors.h" // _PyErr_NoMemory()
|
#include "pycore_pyerrors.h" // _PyErr_NoMemory()
|
||||||
#include "pycore_pystate.h" // _PyThreadState_GET()
|
#include "pycore_pystate.h" // _PyThreadState_GET()
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
|
|
||||||
#include "Python-ast.h"
|
|
||||||
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
||||||
#include "pycore_import.h" // _PyImport_BootstrapImp()
|
#include "pycore_import.h" // _PyImport_BootstrapImp()
|
||||||
#include "pycore_initconfig.h"
|
#include "pycore_initconfig.h"
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
|
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
|
|
||||||
#include "Python-ast.h"
|
|
||||||
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
|
||||||
|
|
||||||
#include "pycore_ceval.h" // _PyEval_FiniGIL()
|
#include "pycore_ceval.h" // _PyEval_FiniGIL()
|
||||||
#include "pycore_context.h" // _PyContext_Init()
|
#include "pycore_context.h" // _PyContext_Init()
|
||||||
#include "pycore_fileutils.h" // _Py_ResetForceASCII()
|
#include "pycore_fileutils.h" // _Py_ResetForceASCII()
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
|
|
||||||
#include "Python-ast.h"
|
#include "pycore_ast.h" // PyAST_mod2obj
|
||||||
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
||||||
|
|
||||||
#include "pycore_interp.h" // PyInterpreterState.importlib
|
#include "pycore_interp.h" // PyInterpreterState.importlib
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
|
#include "pycore_ast.h" // identifier, stmt_ty
|
||||||
#include "pycore_pystate.h" // _PyThreadState_GET()
|
#include "pycore_pystate.h" // _PyThreadState_GET()
|
||||||
#include "pycore_symtable.h" // PySTEntryObject
|
#include "pycore_symtable.h" // PySTEntryObject
|
||||||
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
#undef Yield /* undefine macro conflicting with <winbase.h> */
|
||||||
|
|
|
@ -2765,7 +2765,7 @@ if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; then
|
||||||
# If we're building out-of-tree, we need to make sure the following
|
# If we're building out-of-tree, we need to make sure the following
|
||||||
# resources get picked up before their $srcdir counterparts.
|
# resources get picked up before their $srcdir counterparts.
|
||||||
# Objects/ -> typeslots.inc
|
# Objects/ -> typeslots.inc
|
||||||
# Include/ -> Python-ast.h
|
# Include/ -> Python.h
|
||||||
# Python/ -> importlib.h
|
# Python/ -> importlib.h
|
||||||
# (A side effect of this is that these resources will automatically be
|
# (A side effect of this is that these resources will automatically be
|
||||||
# regenerated when building out-of-tree, regardless of whether or not
|
# regenerated when building out-of-tree, regardless of whether or not
|
||||||
|
|
|
@ -16,7 +16,7 @@ if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; then
|
||||||
# If we're building out-of-tree, we need to make sure the following
|
# If we're building out-of-tree, we need to make sure the following
|
||||||
# resources get picked up before their $srcdir counterparts.
|
# resources get picked up before their $srcdir counterparts.
|
||||||
# Objects/ -> typeslots.inc
|
# Objects/ -> typeslots.inc
|
||||||
# Include/ -> Python-ast.h
|
# Include/ -> Python.h
|
||||||
# Python/ -> importlib.h
|
# Python/ -> importlib.h
|
||||||
# (A side effect of this is that these resources will automatically be
|
# (A side effect of this is that these resources will automatically be
|
||||||
# regenerated when building out-of-tree, regardless of whether or not
|
# regenerated when building out-of-tree, regardless of whether or not
|
||||||
|
|
Loading…
Reference in New Issue