Mercurial > repos > rliterman > csp2
comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/python3.8/bytes_methods.h @ 69:33d812a61356
planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author | jpayne |
---|---|
date | Tue, 18 Mar 2025 17:55:14 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
67:0e9998148a16 | 69:33d812a61356 |
---|---|
1 #ifndef Py_LIMITED_API | |
2 #ifndef Py_BYTES_CTYPE_H | |
3 #define Py_BYTES_CTYPE_H | |
4 | |
5 /* | |
6 * The internal implementation behind PyBytes (bytes) and PyByteArray (bytearray) | |
7 * methods of the given names, they operate on ASCII byte strings. | |
8 */ | |
9 extern PyObject* _Py_bytes_isspace(const char *cptr, Py_ssize_t len); | |
10 extern PyObject* _Py_bytes_isalpha(const char *cptr, Py_ssize_t len); | |
11 extern PyObject* _Py_bytes_isalnum(const char *cptr, Py_ssize_t len); | |
12 extern PyObject* _Py_bytes_isascii(const char *cptr, Py_ssize_t len); | |
13 extern PyObject* _Py_bytes_isdigit(const char *cptr, Py_ssize_t len); | |
14 extern PyObject* _Py_bytes_islower(const char *cptr, Py_ssize_t len); | |
15 extern PyObject* _Py_bytes_isupper(const char *cptr, Py_ssize_t len); | |
16 extern PyObject* _Py_bytes_istitle(const char *cptr, Py_ssize_t len); | |
17 | |
18 /* These store their len sized answer in the given preallocated *result arg. */ | |
19 extern void _Py_bytes_lower(char *result, const char *cptr, Py_ssize_t len); | |
20 extern void _Py_bytes_upper(char *result, const char *cptr, Py_ssize_t len); | |
21 extern void _Py_bytes_title(char *result, const char *s, Py_ssize_t len); | |
22 extern void _Py_bytes_capitalize(char *result, const char *s, Py_ssize_t len); | |
23 extern void _Py_bytes_swapcase(char *result, const char *s, Py_ssize_t len); | |
24 | |
25 extern PyObject *_Py_bytes_find(const char *str, Py_ssize_t len, PyObject *args); | |
26 extern PyObject *_Py_bytes_index(const char *str, Py_ssize_t len, PyObject *args); | |
27 extern PyObject *_Py_bytes_rfind(const char *str, Py_ssize_t len, PyObject *args); | |
28 extern PyObject *_Py_bytes_rindex(const char *str, Py_ssize_t len, PyObject *args); | |
29 extern PyObject *_Py_bytes_count(const char *str, Py_ssize_t len, PyObject *args); | |
30 extern int _Py_bytes_contains(const char *str, Py_ssize_t len, PyObject *arg); | |
31 extern PyObject *_Py_bytes_startswith(const char *str, Py_ssize_t len, PyObject *args); | |
32 extern PyObject *_Py_bytes_endswith(const char *str, Py_ssize_t len, PyObject *args); | |
33 | |
34 /* The maketrans() static method. */ | |
35 extern PyObject* _Py_bytes_maketrans(Py_buffer *frm, Py_buffer *to); | |
36 | |
37 /* Shared __doc__ strings. */ | |
38 extern const char _Py_isspace__doc__[]; | |
39 extern const char _Py_isalpha__doc__[]; | |
40 extern const char _Py_isalnum__doc__[]; | |
41 extern const char _Py_isascii__doc__[]; | |
42 extern const char _Py_isdigit__doc__[]; | |
43 extern const char _Py_islower__doc__[]; | |
44 extern const char _Py_isupper__doc__[]; | |
45 extern const char _Py_istitle__doc__[]; | |
46 extern const char _Py_lower__doc__[]; | |
47 extern const char _Py_upper__doc__[]; | |
48 extern const char _Py_title__doc__[]; | |
49 extern const char _Py_capitalize__doc__[]; | |
50 extern const char _Py_swapcase__doc__[]; | |
51 extern const char _Py_count__doc__[]; | |
52 extern const char _Py_find__doc__[]; | |
53 extern const char _Py_index__doc__[]; | |
54 extern const char _Py_rfind__doc__[]; | |
55 extern const char _Py_rindex__doc__[]; | |
56 extern const char _Py_startswith__doc__[]; | |
57 extern const char _Py_endswith__doc__[]; | |
58 extern const char _Py_maketrans__doc__[]; | |
59 extern const char _Py_expandtabs__doc__[]; | |
60 extern const char _Py_ljust__doc__[]; | |
61 extern const char _Py_rjust__doc__[]; | |
62 extern const char _Py_center__doc__[]; | |
63 extern const char _Py_zfill__doc__[]; | |
64 | |
65 /* this is needed because some docs are shared from the .o, not static */ | |
66 #define PyDoc_STRVAR_shared(name,str) const char name[] = PyDoc_STR(str) | |
67 | |
68 #endif /* !Py_BYTES_CTYPE_H */ | |
69 #endif /* !Py_LIMITED_API */ |