73 lines
4.1 KiB
Python
73 lines
4.1 KiB
Python
"""
|
|
Auto-generated Python stub file from ast.astaux.py
|
|
Module: ast.astaux
|
|
"""
|
|
|
|
|
|
import t, c
|
|
from stdint import *
|
|
import memhub
|
|
import string
|
|
from .base import AST, ASTKind, _init_ast, _copy_str, _set_parent_list, _emit, _emit_str, _emit_int, _dump_list
|
|
|
|
class ExceptHandler(AST):
|
|
type: AST | t.CPtr
|
|
name: str
|
|
def __new__(self: ExceptHandler, pool: memhub.MemManager | t.CPtr, type: AST | t.CPtr, name: str) -> t.CInt: pass
|
|
def __init__(self: ExceptHandler, pool: memhub.MemManager | t.CPtr, type: AST | t.CPtr, name: str) -> t.CInt: pass
|
|
def kind(self: ExceptHandler) -> t.CInt: pass
|
|
def type_name(self: ExceptHandler) -> str: pass
|
|
def dump(self: ExceptHandler, buf: bytes, size: t.CSizeT, pos: t.CSizeT) -> t.CSizeT: pass
|
|
class Arguments(AST):
|
|
args: list[AST | t.CPtr] | t.CPtr
|
|
vararg: AST | t.CPtr
|
|
kwarg: AST | t.CPtr
|
|
defaults: list[AST | t.CPtr] | t.CPtr
|
|
kw_defaults: list[AST | t.CPtr] | t.CPtr
|
|
def __new__(self: Arguments, pool: memhub.MemManager | t.CPtr, args: list[AST | t.CPtr] | t.CPtr, vararg: AST | t.CPtr, kwarg: AST | t.CPtr, defaults: list[AST | t.CPtr] | t.CPtr, kw_defaults: list[AST | t.CPtr] | t.CPtr) -> t.CInt: pass
|
|
def __init__(self: Arguments, pool: memhub.MemManager | t.CPtr, args: list[AST | t.CPtr] | t.CPtr, vararg: AST | t.CPtr, kwarg: AST | t.CPtr, defaults: list[AST | t.CPtr] | t.CPtr, kw_defaults: list[AST | t.CPtr] | t.CPtr) -> t.CInt: pass
|
|
def kind(self: Arguments) -> t.CInt: pass
|
|
def type_name(self: Arguments) -> str: pass
|
|
def dump(self: Arguments, buf: bytes, size: t.CSizeT, pos: t.CSizeT) -> t.CSizeT: pass
|
|
class Arg(AST):
|
|
arg: str
|
|
annotation: AST | t.CPtr
|
|
def __new__(self: Arg, pool: memhub.MemManager | t.CPtr, arg: str, annotation: AST | t.CPtr) -> t.CInt: pass
|
|
def __init__(self: Arg, pool: memhub.MemManager | t.CPtr, arg: str, annotation: AST | t.CPtr) -> t.CInt: pass
|
|
def kind(self: Arg) -> t.CInt: pass
|
|
def type_name(self: Arg) -> str: pass
|
|
def dump(self: Arg, buf: bytes, size: t.CSizeT, pos: t.CSizeT) -> t.CSizeT: pass
|
|
class Keyword(AST):
|
|
arg: str
|
|
value: AST | t.CPtr
|
|
def __new__(self: Keyword, pool: memhub.MemManager | t.CPtr, arg: str, value: AST | t.CPtr) -> t.CInt: pass
|
|
def __init__(self: Keyword, pool: memhub.MemManager | t.CPtr, arg: str, value: AST | t.CPtr) -> t.CInt: pass
|
|
def kind(self: Keyword) -> t.CInt: pass
|
|
def type_name(self: Keyword) -> str: pass
|
|
def dump(self: Keyword, buf: bytes, size: t.CSizeT, pos: t.CSizeT) -> t.CSizeT: pass
|
|
class Alias(AST):
|
|
name: str
|
|
asname: str
|
|
def __new__(self: Alias, pool: memhub.MemManager | t.CPtr, name: str, asname: str) -> t.CInt: pass
|
|
def __init__(self: Alias, pool: memhub.MemManager | t.CPtr, name: str, asname: str) -> t.CInt: pass
|
|
def kind(self: Alias) -> t.CInt: pass
|
|
def type_name(self: Alias) -> str: pass
|
|
def dump(self: Alias, buf: bytes, size: t.CSizeT, pos: t.CSizeT) -> t.CSizeT: pass
|
|
class WithItem(AST):
|
|
context_expr: AST | t.CPtr
|
|
optional_vars: AST | t.CPtr
|
|
def __new__(self: WithItem, pool: memhub.MemManager | t.CPtr, context_expr: AST | t.CPtr, optional_vars: AST | t.CPtr) -> t.CInt: pass
|
|
def __init__(self: WithItem, pool: memhub.MemManager | t.CPtr, context_expr: AST | t.CPtr, optional_vars: AST | t.CPtr) -> t.CInt: pass
|
|
def kind(self: WithItem) -> t.CInt: pass
|
|
def type_name(self: WithItem) -> str: pass
|
|
def dump(self: WithItem, buf: bytes, size: t.CSizeT, pos: t.CSizeT) -> t.CSizeT: pass
|
|
class Comprehension(AST):
|
|
target: AST | t.CPtr
|
|
iter: AST | t.CPtr
|
|
ifs: list[AST | t.CPtr] | t.CPtr
|
|
is_async: t.CInt
|
|
def __new__(self: Comprehension, pool: memhub.MemManager | t.CPtr, target: AST | t.CPtr, iter: AST | t.CPtr, ifs: list[AST | t.CPtr] | t.CPtr, is_async: t.CInt) -> t.CInt: pass
|
|
def __init__(self: Comprehension, pool: memhub.MemManager | t.CPtr, target: AST | t.CPtr, iter: AST | t.CPtr, ifs: list[AST | t.CPtr] | t.CPtr, is_async: t.CInt) -> t.CInt: pass
|
|
def kind(self: Comprehension) -> t.CInt: pass
|
|
def type_name(self: Comprehension) -> str: pass
|
|
def dump(self: Comprehension, buf: bytes, size: t.CSizeT, pos: t.CSizeT) -> t.CSizeT: pass |