summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codecs.py
Commit message (Expand)AuthorAgeFilesLines
* gh-109848: Make test_rot13_func in test_codecs independent (GH-109850)Serhiy Storchaka2023-10-071-1/+2
* gh-66143: Allow copying and pickling of CodecInfo object (GH-109235)Furkan Onder2023-09-291-0/+70
* gh-50644: Forbid pickling of codecs streams (GH-109180)Serhiy Storchaka2023-09-101-0/+79
* gh-106300: Improve `assertRaises(Exception)` usages in tests (GH-106302)Nikita Sobolev2023-07-071-2/+3
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-211-64/+42
* gh-98433: Fix quadratic time idna decoding. (#99092)Gregory P. Smith2022-11-081-0/+6
* gh-51511: Note that codecs.open()'s encoding parameter affects automatic conv...Stanley2022-10-211-1/+2
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-131-1/+0
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-301-1/+6
* bpo-46198: rename duplicate tests and remove unused code (GH-30297)Nikita Sobolev2022-03-101-1/+1
* bpo-46659: Fix the MBCS codec alias on Windows (GH-31218)Victor Stinner2022-02-221-7/+10
* bpo-46659: Update the test on the mbcs codec alias (GH-31168)Victor Stinner2022-02-061-6/+11
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-111-3/+7
* bpo-45668: Fix PGO tests without test extensions (GH-29315)Christian Heimes2021-11-011-0/+1
* bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...Serhiy Storchaka2021-10-141-1/+34
* bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...Serhiy Storchaka2021-10-141-4/+46
* bpo-37330: open() no longer accept 'U' in file mode (GH-28118)Victor Stinner2021-09-021-3/+15
* bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH...Max Bernstein2020-10-171-0/+12
* bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)Hai Shi2020-10-161-22/+3
* bpo-39337: encodings.normalize_encoding() now ignores non-ASCII characters (G...Hai Shi2020-10-141-1/+13
* bpo-39337: Add a test case for normalizing of codec names (GH-19069)Hai Shi2020-10-081-0/+25
* bpo-41842: Add codecs.unregister() function (GH-22360)Hai Shi2020-09-281-0/+12
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21823)Victor Stinner2020-08-111-4/+4
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-031-13/+15
* bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16...Victor Stinner2020-03-041-15/+3
* bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666)Chris A2020-03-021-0/+9
* bpo-30566: Fix IndexError when using punycode codec (GH-18632)Berker Peksag2020-02-251-0/+12
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-191-1/+1
* bpo-37330: open() no longer accept 'U' in file mode (GH-16959)Victor Stinner2019-10-281-3/+15
* bpo-37876: Tests for ROT-13 codec (GH-15314)Zeth2019-09-091-0/+37
* bpo-36311: Fixes decoding multibyte characters around chunk boundaries and im...Steve Dower2019-08-211-3/+17
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+1
* bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)Serhiy Storchaka2019-06-251-0/+24
* bpo-36778: Remove outdated comment from CodePageTest (GH-13807)Victor Stinner2019-06-041-1/+0
* bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)Ammar Askar2019-05-311-0/+25
* bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779)Jelle Zijlstra2019-05-221-0/+21
* bpo-36778: cp65001 encoding becomes an alias to utf_8 (GH-13230)Victor Stinner2019-05-101-89/+0
* bpo-35920: Windows 10 ARM32 platform support (GH-11774)Paul Monson2019-04-251-1/+31
* bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603)Serhiy Storchaka2019-03-301-0/+9
* bpo-36312: Fix decoders for some code pages. (GH-12369)Serhiy Storchaka2019-03-201-0/+9
* bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-181-102/+5
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)Serhiy Storchaka2019-03-051-3/+2
* bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)Serhiy Storchaka2018-12-031-0/+18
* bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759)Victor Stinner2018-11-281-2/+12
* bpo-34523: Support surrogatepass in locale codecs (GH-8995)Victor Stinner2018-08-291-5/+113
* bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences s...Zackery Spytz2018-08-191-0/+1
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-131-8/+2
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499)Serhiy Storchaka2017-11-281-2/+16
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)Serhiy Storchaka2017-10-201-0/+4
* Issue #25270: Merge from 3.5Berker Peksag2016-09-161-0/+20
|\