/
opt
/
alt
/
python34
/
include
/
python3.4m
/
/opt/alt/python34/include/python3.4m
mkdir
upload
Name
Size
Mode
Actions
abstract.h
43078
0644
edit
dl
rm
accu.h
1016
0644
edit
dl
rm
asdl.h
1184
0644
edit
dl
rm
ast.h
477
0644
edit
dl
rm
bitset.h
792
0644
edit
dl
rm
bltinmodule.h
264
0644
edit
dl
rm
boolobject.h
886
0644
edit
dl
rm
bytearrayobject.h
2114
0644
edit
dl
rm
bytesobject.h
4922
0644
edit
dl
rm
bytes_methods.h
2025
0644
edit
dl
rm
cellobject.h
701
0644
edit
dl
rm
ceval.h
7200
0644
edit
dl
rm
classobject.h
1666
0644
edit
dl
rm
code.h
4227
0644
edit
dl
rm
codecs.h
6552
0644
edit
dl
rm
compile.h
2117
0644
edit
dl
rm
complexobject.h
1954
0644
edit
dl
rm
datetime.h
8542
0644
edit
dl
rm
descrobject.h
2913
0644
edit
dl
rm
dictobject.h
5178
0644
edit
dl
rm
dtoa.h
458
0644
edit
dl
rm
dynamic_annotations.h
22469
0644
edit
dl
rm
enumobject.h
253
0644
edit
dl
rm
errcode.h
1497
0644
edit
dl
rm
eval.h
597
0644
edit
dl
rm
fileobject.h
1862
0644
edit
dl
rm
fileutils.h
1501
0644
edit
dl
rm
floatobject.h
4641
0644
edit
dl
rm
frameobject.h
3558
0644
edit
dl
rm
funcobject.h
3771
0644
edit
dl
rm
genobject.h
1131
0644
edit
dl
rm
graminit.h
1873
0644
edit
dl
rm
grammar.h
2045
0644
edit
dl
rm
import.h
3901
0644
edit
dl
rm
intrcheck.h
460
0644
edit
dl
rm
iterobject.h
567
0644
edit
dl
rm
listobject.h
2836
0644
edit
dl
rm
longintrepr.h
3997
0644
edit
dl
rm
longobject.h
8174
0644
edit
dl
rm
marshal.h
803
0644
edit
dl
rm
memoryobject.h
2861
0644
edit
dl
rm
metagrammar.h
253
0644
edit
dl
rm
methodobject.h
3307
0644
edit
dl
rm
modsupport.h
4897
0644
edit
dl
rm
moduleobject.h
1615
0644
edit
dl
rm
namespaceobject.h
297
0644
edit
dl
rm
node.h
1008
0644
edit
dl
rm
object.h
38522
0644
edit
dl
rm
objimpl.h
13848
0644
edit
dl
rm
opcode.h
5211
0644
edit
dl
rm
osdefs.h
848
0644
edit
dl
rm
parsetok.h
2885
0644
edit
dl
rm
patchlevel.h
1130
0644
edit
dl
rm
pgen.h
253
0644
edit
dl
rm
pgenheaders.h
1144
0644
edit
dl
rm
pyarena.h
2744
0644
edit
dl
rm
pyatomic.h
5944
0644
edit
dl
rm
pycapsule.h
1726
0644
edit
dl
rm
pyconfig-64.h
43349
0644
edit
dl
rm
pyconfig.h
162
0644
edit
dl
rm
pyctype.h
1320
0644
edit
dl
rm
pydebug.h
1019
0644
edit
dl
rm
pyerrors.h
16023
0644
edit
dl
rm
pyexpat.h
2450
0644
edit
dl
rm
pyfpe.h
8489
0644
edit
dl
rm
pygetopt.h
388
0644
edit
dl
rm
pyhash.h
4274
0644
edit
dl
rm
pymacconfig.h
2988
0644
edit
dl
rm
pymacro.h
2821
0644
edit
dl
rm
pymath.h
7218
0644
edit
dl
rm
pymem.h
6782
0644
edit
dl
rm
pyport.h
30874
0644
edit
dl
rm
pystate.h
9124
0644
edit
dl
rm
pystrcmp.h
436
0644
edit
dl
rm
pystrtod.h
1276
0644
edit
dl
rm
Python-ast.h
19489
0644
edit
dl
rm
Python.h
2856
0644
edit
dl
rm
pythonrun.h
10184
0644
edit
dl
rm
pythread.h
3036
0644
edit
dl
rm
pytime.h
2914
0644
edit
dl
rm
py_curses.h
4175
0644
edit
dl
rm
rangeobject.h
629
0644
edit
dl
rm
setobject.h
3301
0644
edit
dl
rm
sliceobject.h
1590
0644
edit
dl
rm
structmember.h
2068
0644
edit
dl
rm
structseq.h
1353
0644
edit
dl
rm
symtable.h
5099
0644
edit
dl
rm
sysmodule.h
1355
0644
edit
dl
rm
token.h
1888
0644
edit
dl
rm
traceback.h
2213
0644
edit
dl
rm
tupleobject.h
2444
0644
edit
dl
rm
typeslots.h
1997
0644
edit
dl
rm
ucnhash.h
1057
0644
edit
dl
rm
unicodeobject.h
78133
0644
edit
dl
rm
warnings.h
1426
0644
edit
dl
rm
weakrefobject.h
2866
0644
edit
dl
rm
Edit:
/opt/alt/python34/include/python3.4m/errcode.h
(1497B)
#ifndef Py_ERRCODE_H #define Py_ERRCODE_H #ifdef __cplusplus extern "C" { #endif /* Error codes passed around between file input, tokenizer, parser and interpreter. This is necessary so we can turn them into Python exceptions at a higher level. Note that some errors have a slightly different meaning when passed from the tokenizer to the parser than when passed from the parser to the interpreter; e.g. the parser only returns E_EOF when it hits EOF immediately, and it never returns E_OK. */ #define E_OK 10 /* No error */ #define E_EOF 11 /* End Of File */ #define E_INTR 12 /* Interrupted */ #define E_TOKEN 13 /* Bad token */ #define E_SYNTAX 14 /* Syntax error */ #define E_NOMEM 15 /* Ran out of memory */ #define E_DONE 16 /* Parsing complete */ #define E_ERROR 17 /* Execution error */ #define E_TABSPACE 18 /* Inconsistent mixing of tabs and spaces */ #define E_OVERFLOW 19 /* Node had too many children */ #define E_TOODEEP 20 /* Too many indentation levels */ #define E_DEDENT 21 /* No matching outer block for dedent */ #define E_DECODE 22 /* Error in decoding into Unicode */ #define E_EOFS 23 /* EOF in triple-quoted string */ #define E_EOLS 24 /* EOL in single-quoted string */ #define E_LINECONT 25 /* Unexpected characters after a line continuation */ #define E_IDENTIFIER 26 /* Invalid characters in identifier */ #define E_BADSINGLE 27 /* Ill-formed single statement input */ #ifdef __cplusplus } #endif #endif /* !Py_ERRCODE_H */
Save
cmd:
run