summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Tests
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2017-12-16 08:51:19 (GMT)
committerGitHub <noreply@github.com>2017-12-16 08:51:19 (GMT)
commit9c19b020249c451891affd81751947321a1e6957 (patch)
tree59839ab0d81327eae6937ffd3f0513ea64b7e87e /Misc/NEWS.d/next/Tests
parent0c644fcda095b12eedfb417f15429795c09196b6 (diff)
downloadcpython-9c19b020249c451891affd81751947321a1e6957.zip
cpython-9c19b020249c451891affd81751947321a1e6957.tar.gz
cpython-9c19b020249c451891affd81751947321a1e6957.tar.bz2
bpo-32002: Refactor C locale coercion tests (GH-4369)
Exactly which locale requests will end up giving you the "C" locale is actually platform dependent. A blank locale and "POSIX" will translate to "C" on most Linux distros, but may not do so on other platforms, so this adjusts the way the tests are structured to better account for that. This is an initial step towards fixing the current test failure on Cygwin (hence the issue reference)
Diffstat (limited to 'Misc/NEWS.d/next/Tests')
-rw-r--r--Misc/NEWS.d/next/Tests/2017-11-11-16-35-18.bpo-32002.itDxIo.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2017-11-11-16-35-18.bpo-32002.itDxIo.rst b/Misc/NEWS.d/next/Tests/2017-11-11-16-35-18.bpo-32002.itDxIo.rst
new file mode 100644
index 0000000..9cc7ec2
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2017-11-11-16-35-18.bpo-32002.itDxIo.rst
@@ -0,0 +1,2 @@
+Adjust C locale coercion testing for the empty locale and POSIX locale
+cases to more readily adjust to platform dependent behaviour.