diff options
author | Jakub KulĂk <Kulikjak@gmail.com> | 2019-07-02 10:48:28 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-07-02 10:48:28 (GMT) |
commit | 61bf97e91620e020939d57a36918ab22579920ff (patch) | |
tree | 7bec56f17e0fb23aa50dcec63a9b6624645c249f /Misc | |
parent | d4efd917ac24940063a1ce80073fe3570c5f07f8 (diff) | |
download | cpython-61bf97e91620e020939d57a36918ab22579920ff.zip cpython-61bf97e91620e020939d57a36918ab22579920ff.tar.gz cpython-61bf97e91620e020939d57a36918ab22579920ff.tar.bz2 |
bpo-37335, test_c_locale_coercion: Remove unnecessary code (GH-14447)
Python initialization now ensures that sys stream encoding
names are always normalized by codecs.lookup(encoding).name.
Simplify test_c_locale_coercion: it doesn't have to normalize
encoding names anymore.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2019-06-28-16-37-52.bpo-37335.o5S2hY.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-06-28-16-37-52.bpo-37335.o5S2hY.rst b/Misc/NEWS.d/next/Tests/2019-06-28-16-37-52.bpo-37335.o5S2hY.rst new file mode 100644 index 0000000..cb884d9 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-06-28-16-37-52.bpo-37335.o5S2hY.rst @@ -0,0 +1 @@ +Remove no longer necessary code from c locale coercion tests |