|
Orbits
1
|
Go to the source code of this file.
Macros | |
| #define | ISLOWER(c) Py_ISLOWER(c) |
| #define | ISUPPER(c) Py_ISUPPER(c) |
| #define | ISALPHA(c) Py_ISALPHA(c) |
| #define | ISDIGIT(c) Py_ISDIGIT(c) |
| #define | ISXDIGIT(c) Py_ISXDIGIT(c) |
| #define | ISALNUM(c) Py_ISALNUM(c) |
| #define | ISSPACE(c) Py_ISSPACE(c) |
| #define | islower(c) undefined_islower(c) |
| #define | isupper(c) undefined_isupper(c) |
| #define | isalpha(c) undefined_isalpha(c) |
| #define | isdigit(c) undefined_isdigit(c) |
| #define | isxdigit(c) undefined_isxdigit(c) |
| #define | isalnum(c) undefined_isalnum(c) |
| #define | isspace(c) undefined_isspace(c) |
| #define | TOLOWER(c) Py_TOLOWER(c) |
| #define | TOUPPER(c) Py_TOUPPER(c) |
| #define | tolower(c) undefined_tolower(c) |
| #define | toupper(c) undefined_toupper(c) |
| #define | PyDoc_STRVAR_shared(name, str) const char name[] = PyDoc_STR(str) |
Functions | |
| PyObject * | _Py_bytes_isspace (const char *cptr, Py_ssize_t len) |
| PyObject * | _Py_bytes_isalpha (const char *cptr, Py_ssize_t len) |
| PyObject * | _Py_bytes_isalnum (const char *cptr, Py_ssize_t len) |
| PyObject * | _Py_bytes_isdigit (const char *cptr, Py_ssize_t len) |
| PyObject * | _Py_bytes_islower (const char *cptr, Py_ssize_t len) |
| PyObject * | _Py_bytes_isupper (const char *cptr, Py_ssize_t len) |
| PyObject * | _Py_bytes_istitle (const char *cptr, Py_ssize_t len) |
| void | _Py_bytes_lower (char *result, const char *cptr, Py_ssize_t len) |
| void | _Py_bytes_upper (char *result, const char *cptr, Py_ssize_t len) |
| void | _Py_bytes_title (char *result, char *s, Py_ssize_t len) |
| void | _Py_bytes_capitalize (char *result, char *s, Py_ssize_t len) |
| void | _Py_bytes_swapcase (char *result, char *s, Py_ssize_t len) |
Variables | |
| const char | _Py_isspace__doc__ [] |
| const char | _Py_isalpha__doc__ [] |
| const char | _Py_isalnum__doc__ [] |
| const char | _Py_isdigit__doc__ [] |
| const char | _Py_islower__doc__ [] |
| const char | _Py_isupper__doc__ [] |
| const char | _Py_istitle__doc__ [] |
| const char | _Py_lower__doc__ [] |
| const char | _Py_upper__doc__ [] |
| const char | _Py_title__doc__ [] |
| const char | _Py_capitalize__doc__ [] |
| const char | _Py_swapcase__doc__ [] |
| #define ISALNUM | ( | c | ) | Py_ISALNUM(c) |
| #define isalnum | ( | c | ) | undefined_isalnum(c) |
| #define ISALPHA | ( | c | ) | Py_ISALPHA(c) |
| #define isalpha | ( | c | ) | undefined_isalpha(c) |
| #define ISDIGIT | ( | c | ) | Py_ISDIGIT(c) |
| #define isdigit | ( | c | ) | undefined_isdigit(c) |
| #define ISLOWER | ( | c | ) | Py_ISLOWER(c) |
| #define islower | ( | c | ) | undefined_islower(c) |
| #define ISSPACE | ( | c | ) | Py_ISSPACE(c) |
| #define isspace | ( | c | ) | undefined_isspace(c) |
| #define ISUPPER | ( | c | ) | Py_ISUPPER(c) |
| #define isupper | ( | c | ) | undefined_isupper(c) |
| #define ISXDIGIT | ( | c | ) | Py_ISXDIGIT(c) |
| #define isxdigit | ( | c | ) | undefined_isxdigit(c) |
| #define TOLOWER | ( | c | ) | Py_TOLOWER(c) |
| #define tolower | ( | c | ) | undefined_tolower(c) |
| #define TOUPPER | ( | c | ) | Py_TOUPPER(c) |
| #define toupper | ( | c | ) | undefined_toupper(c) |
| void _Py_bytes_capitalize | ( | char * | result, |
| char * | s, | ||
| Py_ssize_t | len | ||
| ) |
| PyObject* _Py_bytes_isalnum | ( | const char * | cptr, |
| Py_ssize_t | len | ||
| ) |
| PyObject* _Py_bytes_isalpha | ( | const char * | cptr, |
| Py_ssize_t | len | ||
| ) |
| PyObject* _Py_bytes_isdigit | ( | const char * | cptr, |
| Py_ssize_t | len | ||
| ) |
| PyObject* _Py_bytes_islower | ( | const char * | cptr, |
| Py_ssize_t | len | ||
| ) |
| PyObject* _Py_bytes_isspace | ( | const char * | cptr, |
| Py_ssize_t | len | ||
| ) |
| PyObject* _Py_bytes_istitle | ( | const char * | cptr, |
| Py_ssize_t | len | ||
| ) |
| PyObject* _Py_bytes_isupper | ( | const char * | cptr, |
| Py_ssize_t | len | ||
| ) |
| void _Py_bytes_lower | ( | char * | result, |
| const char * | cptr, | ||
| Py_ssize_t | len | ||
| ) |
| void _Py_bytes_swapcase | ( | char * | result, |
| char * | s, | ||
| Py_ssize_t | len | ||
| ) |
| void _Py_bytes_title | ( | char * | result, |
| char * | s, | ||
| Py_ssize_t | len | ||
| ) |
| void _Py_bytes_upper | ( | char * | result, |
| const char * | cptr, | ||
| Py_ssize_t | len | ||
| ) |
| const char _Py_capitalize__doc__[] |
| const char _Py_isalnum__doc__[] |
| const char _Py_isalpha__doc__[] |
| const char _Py_isdigit__doc__[] |
| const char _Py_islower__doc__[] |
| const char _Py_isspace__doc__[] |
| const char _Py_istitle__doc__[] |
| const char _Py_isupper__doc__[] |
| const char _Py_lower__doc__[] |
| const char _Py_swapcase__doc__[] |
| const char _Py_title__doc__[] |
| const char _Py_upper__doc__[] |
1.8.3.1
Copyright 2014 Google Inc. All rights reserved.