diff options
author | Jakub KulĂk <Kulikjak@gmail.com> | 2021-04-30 13:21:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 13:21:42 (GMT) |
commit | 9032cf5cb1e33c0349089cfb0f6bf11ed3c30e86 (patch) | |
tree | 86ccc15aac78e1225299e09c12215d942b147d6f /pyconfig.h.in | |
parent | 4908fae3d57f68694cf006e89fd7761f45003447 (diff) | |
download | cpython-9032cf5cb1e33c0349089cfb0f6bf11ed3c30e86.zip cpython-9032cf5cb1e33c0349089cfb0f6bf11ed3c30e86.tar.gz cpython-9032cf5cb1e33c0349089cfb0f6bf11ed3c30e86.tar.bz2 |
bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 6e54d55..63438d8 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -748,6 +748,10 @@ /* Define to 1 if you have the `nice' function. */ #undef HAVE_NICE +/* Define if the internal form of wchar_t in non-Unicode locales is not + Unicode. */ +#undef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION + /* Define to 1 if you have the `openat' function. */ #undef HAVE_OPENAT |