PATH:
usr
/
include
/
python3.6m
#ifndef Py_COMPILE_H #define Py_COMPILE_H #ifndef Py_LIMITED_API #include "code.h" #ifdef __cplusplus extern "C" { #endif /* Public interface */ struct _node; /* Declare the existence of this type */ PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *); /* Future feature support */ typedef struct { int ff_features; /* flags set by future statements */ int ff_lineno; /* line number of last future statement */ } PyFutureFeatures; #define FUTURE_NESTED_SCOPES "nested_scopes" #define FUTURE_GENERATORS "generators" #define FUTURE_DIVISION "division" #define FUTURE_ABSOLUTE_IMPORT "absolute_import" #define FUTURE_WITH_STATEMENT "with_statement" #define FUTURE_PRINT_FUNCTION "print_function" #define FUTURE_UNICODE_LITERALS "unicode_literals" #define FUTURE_BARRY_AS_BDFL "barry_as_FLUFL" #define FUTURE_GENERATOR_STOP "generator_stop" struct _mod; /* Declare the existence of this type */ #define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar) PyAPI_FUNC(PyCodeObject *) PyAST_CompileEx( struct _mod *mod, const char *filename, /* decoded from the filesystem encoding */ PyCompilerFlags *flags, int optimize, PyArena *arena); PyAPI_FUNC(PyCodeObject *) PyAST_CompileObject( struct _mod *mod, PyObject *filename, PyCompilerFlags *flags, int optimize, PyArena *arena); PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST( struct _mod * mod, const char *filename /* decoded from the filesystem encoding */ ); PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromASTObject( struct _mod * mod, PyObject *filename ); /* _Py_Mangle is defined in compile.c */ PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name); #define PY_INVALID_STACK_EFFECT INT_MAX PyAPI_FUNC(int) PyCompile_OpcodeStackEffect(int opcode, int oparg); #ifdef __cplusplus } #endif #endif /* !Py_LIMITED_API */ /* These definitions must match corresponding definitions in graminit.h. There's code in compile.c that checks that they are the same. */ #define Py_single_input 256 #define Py_file_input 257 #define Py_eval_input 258 #endif /* !Py_COMPILE_H */
[+]
..
[-] pystrtod.h
[edit]
[-] Python-ast.h
[edit]
[-] grammar.h
[edit]
[-] pygetopt.h
[edit]
[-] marshal.h
[edit]
[-] symtable.h
[edit]
[-] pyhash.h
[edit]
[-] traceback.h
[edit]
[-] abstract.h
[edit]
[-] sysmodule.h
[edit]
[-] ast.h
[edit]
[-] structseq.h
[edit]
[-] floatobject.h
[edit]
[-] osdefs.h
[edit]
[-] odictobject.h
[edit]
[-] graminit.h
[edit]
[-] enumobject.h
[edit]
[-] pystrhex.h
[edit]
[-] pyexpat.h
[edit]
[-] tupleobject.h
[edit]
[-] accu.h
[edit]
[-] listobject.h
[edit]
[-] pylifecycle.h
[edit]
[-] bltinmodule.h
[edit]
[-] parsetok.h
[edit]
[-] iterobject.h
[edit]
[-] weakrefobject.h
[edit]
[-] pymem.h
[edit]
[-] code.h
[edit]
[-] pyport.h
[edit]
[-] errcode.h
[edit]
[-] pyctype.h
[edit]
[-] modsupport.h
[edit]
[-] pystrcmp.h
[edit]
[-] eval.h
[edit]
[-] moduleobject.h
[edit]
[-] import.h
[edit]
[-] pgenheaders.h
[edit]
[-] fileobject.h
[edit]
[-] pymacconfig.h
[edit]
[-] pyerrors.h
[edit]
[-] sliceobject.h
[edit]
[-] pyconfig-64.h
[edit]
[-] metagrammar.h
[edit]
[-] methodobject.h
[edit]
[-] node.h
[edit]
[-] py_curses.h
[edit]
[-] longobject.h
[edit]
[-] typeslots.h
[edit]
[-] codecs.h
[edit]
[-] rangeobject.h
[edit]
[-] warnings.h
[edit]
[-] descrobject.h
[edit]
[-] bytes_methods.h
[edit]
[-] pystate.h
[edit]
[-] setobject.h
[edit]
[-] token.h
[edit]
[-] frameobject.h
[edit]
[-] pycapsule.h
[edit]
[-] bytearrayobject.h
[edit]
[-] bytesobject.h
[edit]
[-] osmodule.h
[edit]
[-] bitset.h
[edit]
[-] pytime.h
[edit]
[-] dictobject.h
[edit]
[-] ucnhash.h
[edit]
[-] pythonrun.h
[edit]
[-] object.h
[edit]
[-] pyatomic.h
[edit]
[-] Python.h
[edit]
[-] dynamic_annotations.h
[edit]
[-] compile.h
[edit]
[-] opcode.h
[edit]
[-] intrcheck.h
[edit]
[-] pymath.h
[edit]
[-] pydebug.h
[edit]
[-] memoryobject.h
[edit]
[-] _hashopenssl.h
[edit]
[-] pymacro.h
[edit]
[-] structmember.h
[edit]
[-] asdl.h
[edit]
[-] objimpl.h
[edit]
[-] pyfpe.h
[edit]
[-] classobject.h
[edit]
[-] pyconfig.h
[edit]
[-] dtoa.h
[edit]
[-] unicodeobject.h
[edit]
[-] funcobject.h
[edit]
[-] datetime.h
[edit]
[-] fileutils.h
[edit]
[-] boolobject.h
[edit]
[-] pgen.h
[edit]
[-] ceval.h
[edit]
[-] namespaceobject.h
[edit]
[-] pydtrace.h
[edit]
[-] genobject.h
[edit]
[-] pythread.h
[edit]
[-] patchlevel.h
[edit]
[-] cellobject.h
[edit]
[-] pyarena.h
[edit]
[-] longintrepr.h
[edit]
[-] complexobject.h
[edit]