summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorxdegaye <xdegaye@gmail.com>2017-11-12 11:45:59 (GMT)
committerGitHub <noreply@github.com>2017-11-12 11:45:59 (GMT)
commit1588be66d7b0eeebc4614309cd0fc837ff52776a (patch)
tree97210c1876d31fe2bc78d9eb029725fd33adbb32 /Misc
parent9e78dc25179a492550dc602e47e7f4d24e3c89a3 (diff)
downloadcpython-1588be66d7b0eeebc4614309cd0fc837ff52776a.zip
cpython-1588be66d7b0eeebc4614309cd0fc837ff52776a.tar.gz
cpython-1588be66d7b0eeebc4614309cd0fc837ff52776a.tar.bz2
bpo-28180: Fix the implementation of PEP 538 on Android (GH-4334)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-11-12-11-44-22.bpo-28180.HQX000.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-11-12-11-44-22.bpo-28180.HQX000.rst b/Misc/NEWS.d/next/Core and Builtins/2017-11-12-11-44-22.bpo-28180.HQX000.rst
new file mode 100644
index 0000000..edf4581
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-11-12-11-44-22.bpo-28180.HQX000.rst
@@ -0,0 +1,4 @@
+A new internal ``_Py_SetLocaleFromEnv(category)`` helper function has been
+added in order to improve the consistency of behaviour across different
+``libc`` implementations (e.g. Android doesn't support setting the locale from
+the environment by default).