/
opt
/
alt
/
python27
/
include
/
python2.7
/
/opt/alt/python27/include/python2.7
mkdir
upload
Name
Size
Mode
Actions
abstract.h
45225
0644
edit
dl
rm
asdl.h
1099
0644
edit
dl
rm
ast.h
230
0644
edit
dl
rm
bitset.h
792
0644
edit
dl
rm
boolobject.h
912
0644
edit
dl
rm
bufferobject.h
922
0644
edit
dl
rm
bytearrayobject.h
1941
0644
edit
dl
rm
bytesobject.h
1152
0644
edit
dl
rm
bytes_methods.h
2804
0644
edit
dl
rm
cellobject.h
651
0644
edit
dl
rm
ceval.h
5061
0644
edit
dl
rm
classobject.h
3002
0644
edit
dl
rm
cobject.h
2930
0644
edit
dl
rm
code.h
4407
0644
edit
dl
rm
codecs.h
6171
0644
edit
dl
rm
compile.h
1065
0644
edit
dl
rm
complexobject.h
1853
0644
edit
dl
rm
cStringIO.h
2005
0644
edit
dl
rm
datetime.h
8313
0644
edit
dl
rm
descrobject.h
2480
0644
edit
dl
rm
dictobject.h
6892
0644
edit
dl
rm
dtoa.h
338
0644
edit
dl
rm
enumobject.h
253
0644
edit
dl
rm
errcode.h
1399
0644
edit
dl
rm
eval.h
557
0644
edit
dl
rm
fileobject.h
3662
0644
edit
dl
rm
floatobject.h
5625
0644
edit
dl
rm
frameobject.h
3254
0644
edit
dl
rm
funcobject.h
2995
0644
edit
dl
rm
genobject.h
891
0644
edit
dl
rm
graminit.h
1917
0644
edit
dl
rm
grammar.h
2051
0644
edit
dl
rm
import.h
2223
0644
edit
dl
rm
intobject.h
2976
0644
edit
dl
rm
intrcheck.h
274
0644
edit
dl
rm
iterobject.h
522
0644
edit
dl
rm
listobject.h
2569
0644
edit
dl
rm
longintrepr.h
3907
0644
edit
dl
rm
longobject.h
5809
0644
edit
dl
rm
marshal.h
713
0644
edit
dl
rm
memoryobject.h
2823
0644
edit
dl
rm
metagrammar.h
253
0644
edit
dl
rm
methodobject.h
3355
0644
edit
dl
rm
modsupport.h
5024
0644
edit
dl
rm
moduleobject.h
609
0644
edit
dl
rm
node.h
938
0644
edit
dl
rm
object.h
40059
0644
edit
dl
rm
objimpl.h
14338
0644
edit
dl
rm
opcode.h
4814
0644
edit
dl
rm
osdefs.h
1059
0644
edit
dl
rm
parsetok.h
1780
0644
edit
dl
rm
patchlevel.h
1450
0644
edit
dl
rm
pgen.h
253
0644
edit
dl
rm
pgenheaders.h
1180
0644
edit
dl
rm
pyarena.h
2693
0644
edit
dl
rm
pycapsule.h
1679
0644
edit
dl
rm
pyconfig-64.h
37841
0644
edit
dl
rm
pyconfig.h
162
0644
edit
dl
rm
pyctype.h
1268
0644
edit
dl
rm
pydebug.h
1322
0644
edit
dl
rm
pyerrors.h
11741
0644
edit
dl
rm
pyexpat.h
2117
0644
edit
dl
rm
pyfpe.h
8471
0644
edit
dl
rm
pygetopt.h
348
0644
edit
dl
rm
pymacconfig.h
2989
0644
edit
dl
rm
pymactoolbox.h
8628
0644
edit
dl
rm
pymath.h
7332
0644
edit
dl
rm
pymem.h
4712
0644
edit
dl
rm
pyport.h
32558
0644
edit
dl
rm
pystate.h
6403
0644
edit
dl
rm
pystrcmp.h
463
0644
edit
dl
rm
pystrtod.h
1582
0644
edit
dl
rm
Python-ast.h
21113
0644
edit
dl
rm
Python.h
4375
0644
edit
dl
rm
pythonrun.h
7234
0644
edit
dl
rm
pythread.h
1155
0644
edit
dl
rm
py_curses.h
4273
0644
edit
dl
rm
rangeobject.h
646
0644
edit
dl
rm
setobject.h
3077
0644
edit
dl
rm
sliceobject.h
1681
0644
edit
dl
rm
stringobject.h
7979
0644
edit
dl
rm
structmember.h
2901
0644
edit
dl
rm
structseq.h
862
0644
edit
dl
rm
symtable.h
3724
0644
edit
dl
rm
sysmodule.h
865
0644
edit
dl
rm
timefuncs.h
541
0644
edit
dl
rm
token.h
1799
0644
edit
dl
rm
traceback.h
697
0644
edit
dl
rm
tupleobject.h
2175
0644
edit
dl
rm
ucnhash.h
924
0644
edit
dl
rm
unicodeobject.h
52227
0644
edit
dl
rm
warnings.h
635
0644
edit
dl
rm
weakrefobject.h
2801
0644
edit
dl
rm
Edit:
/opt/alt/python27/include/python2.7/frameobject.h
(3254B)
/* Frame object interface */ #ifndef Py_FRAMEOBJECT_H #define Py_FRAMEOBJECT_H #ifdef __cplusplus extern "C" { #endif typedef struct { int b_type; /* what kind of block this is */ int b_handler; /* where to jump to find handler */ int b_level; /* value stack level to pop to */ } PyTryBlock; typedef struct _frame { PyObject_VAR_HEAD struct _frame *f_back; /* previous frame, or NULL */ PyCodeObject *f_code; /* code segment */ PyObject *f_builtins; /* builtin symbol table (PyDictObject) */ PyObject *f_globals; /* global symbol table (PyDictObject) */ PyObject *f_locals; /* local symbol table (any mapping) */ PyObject **f_valuestack; /* points after the last local */ /* Next free slot in f_valuestack. Frame creation sets to f_valuestack. Frame evaluation usually NULLs it, but a frame that yields sets it to the current stack top. */ PyObject **f_stacktop; PyObject *f_trace; /* Trace function */ /* If an exception is raised in this frame, the next three are used to * record the exception info (if any) originally in the thread state. See * comments before set_exc_info() -- it's not obvious. * Invariant: if _type is NULL, then so are _value and _traceback. * Desired invariant: all three are NULL, or all three are non-NULL. That * one isn't currently true, but "should be". */ PyObject *f_exc_type, *f_exc_value, *f_exc_traceback; PyThreadState *f_tstate; int f_lasti; /* Last instruction if called */ /* Call PyFrame_GetLineNumber() instead of reading this field directly. As of 2.3 f_lineno is only valid when tracing is active (i.e. when f_trace is set). At other times we use PyCode_Addr2Line to calculate the line from the current bytecode index. */ int f_lineno; /* Current line number */ int f_iblock; /* index in f_blockstack */ PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */ PyObject *f_localsplus[1]; /* locals+stack, dynamically sized */ } PyFrameObject; /* Standard object interface */ PyAPI_DATA(PyTypeObject) PyFrame_Type; #define PyFrame_Check(op) (Py_TYPE(op) == &PyFrame_Type) #define PyFrame_IsRestricted(f) \ ((f)->f_tstate && (f)->f_builtins != (f)->f_tstate->interp->builtins) PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *, PyObject *, PyObject *); /* The rest of the interface is specific for frame objects */ /* Block management functions */ PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int); PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *); /* Extend the value stack */ PyAPI_FUNC(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int); /* Conversions between "fast locals" and locals in dictionary */ PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int); PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *); PyAPI_FUNC(int) PyFrame_ClearFreeList(void); PyAPI_FUNC(void) _PyFrame_DebugMallocStats(FILE *out); /* Return the line of code the frame is currently executing. */ PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *); #ifdef __cplusplus } #endif #endif /* !Py_FRAMEOBJECT_H */
Save
cmd:
run