| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| #ifndef Py_INTERNAL_UNICODECTYPE_H | ||
| #define Py_INTERNAL_UNICODECTYPE_H | ||
| #ifdef __cplusplus | ||
| extern "C" { | ||
| #endif | ||
|
|
||
| #ifndef Py_BUILD_CORE | ||
| # error "this header requires Py_BUILD_CORE define" | ||
| #endif | ||
|
|
||
| extern int _PyUnicode_ToLowerFull(Py_UCS4 ch, Py_UCS4 *res); | ||
| extern int _PyUnicode_ToTitleFull(Py_UCS4 ch, Py_UCS4 *res); | ||
| extern int _PyUnicode_ToUpperFull(Py_UCS4 ch, Py_UCS4 *res); | ||
| extern int _PyUnicode_ToFoldedFull(Py_UCS4 ch, Py_UCS4 *res); | ||
| extern int _PyUnicode_IsCaseIgnorable(Py_UCS4 ch); | ||
| extern int _PyUnicode_IsCased(Py_UCS4 ch); | ||
|
|
||
| // Export for 'unicodedata' shared extension. | ||
| PyAPI_FUNC(int) _PyUnicode_IsXidStart(Py_UCS4 ch); | ||
| PyAPI_FUNC(int) _PyUnicode_IsXidContinue(Py_UCS4 ch); | ||
|
|
||
| #ifdef __cplusplus | ||
| } | ||
| #endif | ||
| #endif /* !Py_INTERNAL_UNICODECTYPE_H */ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| :mod:`unicodedata`: Add :func:`~unicodedata.isxidstart` and | ||
| :func:`~unicodedata.isxidcontinue` functions to check whether a character can | ||
| start or continue a `Unicode Standard Annex #31 <https://www.unicode.org/reports/tr31/>`_ identifier. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.