Hackfut Security File Manager
Current Path:
/usr/include/python2.6
usr
/
include
/
python2.6
/
📁
..
📄
Python-ast.h
(19.61 KB)
📄
Python.h
(4.19 KB)
📄
abstract.h
(43.58 KB)
📄
asdl.h
(1.07 KB)
📄
ast.h
(230 B)
📄
bitset.h
(792 B)
📄
boolobject.h
(912 B)
📄
bufferobject.h
(922 B)
📄
bytearrayobject.h
(1.9 KB)
📄
bytes_methods.h
(3.19 KB)
📄
bytesobject.h
(1.42 KB)
📄
cStringIO.h
(1.95 KB)
📄
cellobject.h
(651 B)
📄
ceval.h
(5 KB)
📄
classobject.h
(2.87 KB)
📄
cobject.h
(1.83 KB)
📄
code.h
(3.44 KB)
📄
codecs.h
(4.9 KB)
📄
compile.h
(1.13 KB)
📄
complexobject.h
(1.5 KB)
📄
datetime.h
(8.42 KB)
📄
descrobject.h
(2.42 KB)
📄
dictobject.h
(5.83 KB)
📄
enumobject.h
(253 B)
📄
errcode.h
(1.33 KB)
📄
eval.h
(557 B)
📄
fileobject.h
(2.85 KB)
📄
floatobject.h
(4.94 KB)
📄
frameobject.h
(2.85 KB)
📄
funcobject.h
(2.92 KB)
📄
genobject.h
(891 B)
📄
graminit.h
(1.86 KB)
📄
grammar.h
(1.97 KB)
📄
import.h
(2.16 KB)
📄
intobject.h
(2.67 KB)
📄
intrcheck.h
(274 B)
📄
iterobject.h
(522 B)
📄
listobject.h
(2.45 KB)
📄
longintrepr.h
(2.26 KB)
📄
longobject.h
(5.45 KB)
📄
marshal.h
(713 B)
📄
metagrammar.h
(253 B)
📄
methodobject.h
(3.16 KB)
📄
modsupport.h
(5.24 KB)
📄
moduleobject.h
(609 B)
📄
node.h
(890 B)
📄
object.h
(36.52 KB)
📄
objimpl.h
(12.78 KB)
📄
opcode.h
(4.24 KB)
📄
osdefs.h
(942 B)
📄
parsetok.h
(1.74 KB)
📄
patchlevel.h
(1.4 KB)
📄
pgen.h
(253 B)
📄
pgenheaders.h
(1.12 KB)
📄
py_curses.h
(4.29 KB)
📄
pyarena.h
(2.63 KB)
📄
pyconfig-64.h
(30.5 KB)
📄
pyconfig.h
(162 B)
📄
pyctype.h
(1.05 KB)
📄
pydebug.h
(1.29 KB)
📄
pydtrace.h
(1.32 KB)
📄
pyerrors.h
(11.44 KB)
📄
pyexpat.h
(1.91 KB)
📄
pyfpe.h
(8.3 KB)
📄
pygetopt.h
(348 B)
📄
pymacconfig.h
(2.43 KB)
📄
pymactoolbox.h
(7.76 KB)
📄
pymath.h
(6.46 KB)
📄
pymem.h
(4.57 KB)
📄
pyport.h
(24.2 KB)
📄
pystate.h
(6.18 KB)
📄
pystrcmp.h
(463 B)
📄
pystrtod.h
(359 B)
📄
pythonrun.h
(6.94 KB)
📄
pythread.h
(1.41 KB)
📄
rangeobject.h
(646 B)
📄
setobject.h
(3 KB)
📄
sliceobject.h
(1.3 KB)
📄
stringobject.h
(7.69 KB)
📄
structmember.h
(2.83 KB)
📄
structseq.h
(862 B)
📄
symtable.h
(3.96 KB)
📄
sysmodule.h
(916 B)
📄
timefuncs.h
(442 B)
📄
token.h
(1.67 KB)
📄
traceback.h
(697 B)
📄
tupleobject.h
(2.07 KB)
📄
ucnhash.h
(861 B)
📄
unicodeobject.h
(51.08 KB)
📄
warnings.h
(635 B)
📄
weakrefobject.h
(2.37 KB)
Editing: bytes_methods.h
#ifndef Py_BYTES_CTYPE_H #define Py_BYTES_CTYPE_H /* * The internal implementation behind PyString (bytes) and PyBytes (buffer) * methods of the given names, they operate on ASCII byte strings. */ extern PyObject* _Py_bytes_isspace(const char *cptr, Py_ssize_t len); extern PyObject* _Py_bytes_isalpha(const char *cptr, Py_ssize_t len); extern PyObject* _Py_bytes_isalnum(const char *cptr, Py_ssize_t len); extern PyObject* _Py_bytes_isdigit(const char *cptr, Py_ssize_t len); extern PyObject* _Py_bytes_islower(const char *cptr, Py_ssize_t len); extern PyObject* _Py_bytes_isupper(const char *cptr, Py_ssize_t len); extern PyObject* _Py_bytes_istitle(const char *cptr, Py_ssize_t len); /* These store their len sized answer in the given preallocated *result arg. */ extern void _Py_bytes_lower(char *result, const char *cptr, Py_ssize_t len); extern void _Py_bytes_upper(char *result, const char *cptr, Py_ssize_t len); extern void _Py_bytes_title(char *result, char *s, Py_ssize_t len); extern void _Py_bytes_capitalize(char *result, char *s, Py_ssize_t len); extern void _Py_bytes_swapcase(char *result, char *s, Py_ssize_t len); /* Shared __doc__ strings. */ extern const char _Py_isspace__doc__[]; extern const char _Py_isalpha__doc__[]; extern const char _Py_isalnum__doc__[]; extern const char _Py_isdigit__doc__[]; extern const char _Py_islower__doc__[]; extern const char _Py_isupper__doc__[]; extern const char _Py_istitle__doc__[]; extern const char _Py_lower__doc__[]; extern const char _Py_upper__doc__[]; extern const char _Py_title__doc__[]; extern const char _Py_capitalize__doc__[]; extern const char _Py_swapcase__doc__[]; #define FLAG_LOWER 0x01 #define FLAG_UPPER 0x02 #define FLAG_ALPHA (FLAG_LOWER|FLAG_UPPER) #define FLAG_DIGIT 0x04 #define FLAG_ALNUM (FLAG_ALPHA|FLAG_DIGIT) #define FLAG_SPACE 0x08 #define FLAG_XDIGIT 0x10 extern const unsigned int _Py_ctype_table[256]; #define ISLOWER(c) (_Py_ctype_table[Py_CHARMASK(c)] & FLAG_LOWER) #define ISUPPER(c) (_Py_ctype_table[Py_CHARMASK(c)] & FLAG_UPPER) #define ISALPHA(c) (_Py_ctype_table[Py_CHARMASK(c)] & FLAG_ALPHA) #define ISDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & FLAG_DIGIT) #define ISXDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & FLAG_XDIGIT) #define ISALNUM(c) (_Py_ctype_table[Py_CHARMASK(c)] & FLAG_ALNUM) #define ISSPACE(c) (_Py_ctype_table[Py_CHARMASK(c)] & FLAG_SPACE) #undef islower #define islower(c) undefined_islower(c) #undef isupper #define isupper(c) undefined_isupper(c) #undef isalpha #define isalpha(c) undefined_isalpha(c) #undef isdigit #define isdigit(c) undefined_isdigit(c) #undef isxdigit #define isxdigit(c) undefined_isxdigit(c) #undef isalnum #define isalnum(c) undefined_isalnum(c) #undef isspace #define isspace(c) undefined_isspace(c) extern const unsigned char _Py_ctype_tolower[256]; extern const unsigned char _Py_ctype_toupper[256]; #define TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)]) #define TOUPPER(c) (_Py_ctype_toupper[Py_CHARMASK(c)]) #undef tolower #define tolower(c) undefined_tolower(c) #undef toupper #define toupper(c) undefined_toupper(c) /* this is needed because some docs are shared from the .o, not static */ #define PyDoc_STRVAR_shared(name,str) const char name[] = PyDoc_STR(str) #endif /* !Py_BYTES_CTYPE_H */
Upload File
Create Folder