LEFT | RIGHT |
1 #ifndef Py_UNICODEOBJECT_H | 1 #ifndef Py_UNICODEOBJECT_H |
2 #define Py_UNICODEOBJECT_H | 2 #define Py_UNICODEOBJECT_H |
3 | 3 |
4 #include <stdarg.h> | 4 #include <stdarg.h> |
5 | 5 |
6 /* | 6 /* |
7 | 7 |
8 Unicode implementation based on original code by Fredrik Lundh, | 8 Unicode implementation based on original code by Fredrik Lundh, |
9 modified by Marc-Andre Lemburg (mal@lemburg.com) according to the | 9 modified by Marc-Andre Lemburg (mal@lemburg.com) according to the |
10 Unicode Integration Proposal. (See | 10 Unicode Integration Proposal. (See |
(...skipping 2282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2293 | 2293 |
2294 /* Fast equality check when the inputs are known to be exact unicode types | 2294 /* Fast equality check when the inputs are known to be exact unicode types |
2295 and where the hash values are equal (i.e. a very probable match) */ | 2295 and where the hash values are equal (i.e. a very probable match) */ |
2296 PyAPI_FUNC(int) _PyUnicode_EQ(PyObject *, PyObject *); | 2296 PyAPI_FUNC(int) _PyUnicode_EQ(PyObject *, PyObject *); |
2297 #endif /* !Py_LIMITED_API */ | 2297 #endif /* !Py_LIMITED_API */ |
2298 | 2298 |
2299 #ifdef __cplusplus | 2299 #ifdef __cplusplus |
2300 } | 2300 } |
2301 #endif | 2301 #endif |
2302 #endif /* !Py_UNICODEOBJECT_H */ | 2302 #endif /* !Py_UNICODEOBJECT_H */ |
LEFT | RIGHT |