python-2.7.6/include/bytes_methods.h Source File
Go to the documentation of this file. 1 #ifndef Py_BYTES_CTYPE_H
2 #define Py_BYTES_CTYPE_H
39 #define ISLOWER(c) Py_ISLOWER(c)
40 #define ISUPPER(c) Py_ISUPPER(c)
41 #define ISALPHA(c) Py_ISALPHA(c)
42 #define ISDIGIT(c) Py_ISDIGIT(c)
43 #define ISXDIGIT(c) Py_ISXDIGIT(c)
44 #define ISALNUM(c) Py_ISALNUM(c)
45 #define ISSPACE(c) Py_ISSPACE(c)
48 #define islower(c) undefined_islower(c)
50 #define isupper(c) undefined_isupper(c)
52 #define isalpha(c) undefined_isalpha(c)
54 #define isdigit(c) undefined_isdigit(c)
56 #define isxdigit(c) undefined_isxdigit(c)
58 #define isalnum(c) undefined_isalnum(c)
60 #define isspace(c) undefined_isspace(c)
64 #define TOLOWER(c) Py_TOLOWER(c)
65 #define TOUPPER(c) Py_TOUPPER(c)
68 #define tolower(c) undefined_tolower(c)
70 #define toupper(c) undefined_toupper(c)
73 #define PyDoc_STRVAR_shared(name,str) const char name[] = PyDoc_STR(str)
const char _Py_title__doc__[]
const char _Py_islower__doc__[]
PyObject * _Py_bytes_isdigit(const char *cptr, Py_ssize_t len)
void _Py_bytes_lower(char *result, const char *cptr, Py_ssize_t len)
PyObject * _Py_bytes_istitle(const char *cptr, Py_ssize_t len)
PyObject * _Py_bytes_isalnum(const char *cptr, Py_ssize_t len)
void _Py_bytes_upper(char *result, const char *cptr, Py_ssize_t len)
const char _Py_isspace__doc__[]
void _Py_bytes_title(char *result, char *s, Py_ssize_t len)
void _Py_bytes_capitalize(char *result, char *s, Py_ssize_t len)
const char _Py_isdigit__doc__[]
PyObject * _Py_bytes_isalpha(const char *cptr, Py_ssize_t len)
const char _Py_istitle__doc__[]
PyObject * _Py_bytes_isupper(const char *cptr, Py_ssize_t len)
const char _Py_swapcase__doc__[]
PyObject * _Py_bytes_isspace(const char *cptr, Py_ssize_t len)
const char _Py_upper__doc__[]
const char _Py_isupper__doc__[]
const char _Py_isalpha__doc__[]
const char _Py_capitalize__doc__[]
const char _Py_isalnum__doc__[]
void _Py_bytes_swapcase(char *result, char *s, Py_ssize_t len)
const char _Py_lower__doc__[]
PyObject * _Py_bytes_islower(const char *cptr, Py_ssize_t len)