8000 bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris by kulikjak · Pull Request #25096 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris #25096

New issue

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

Merged
merged 12 commits into from
Apr 30, 2021
Merged
Prev Previous commit
Next Next commit
Clean unused includes
  • Loading branch information
kulikjak committed Apr 29, 2021
commit 627e460f4c552ccf5ce8e8c4af08580d0747425c
4 changes: 0 additions & 4 deletions Include/unicodeobject.h
795F
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ Copyright (c) Corporation for National Research Initiatives.
# include <wchar.h>
#endif

#ifdef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION
# include <uchar.h>
#endif

/* Py_UCS4 and Py_UCS2 are typedefs for the respective
unicode representations. */
typedef uint32_t Py_UCS4;
Expand Down
0