aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_codecs.py
Commit message (Expand)AuthorAge
* gh-98433: Fix quadratic time idna decoding. (#99092)Gregory P. Smith2022-11-07
* gh-51511: Note that codecs.open()'s encoding parameter affects automatic conv...Stanley2022-10-21
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-13
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-30
* bpo-46198: rename duplicate tests and remove unused code (GH-30297)Nikita Sobolev2022-03-10
* bpo-46659: Fix the MBCS codec alias on Windows (GH-31218)Victor Stinner2022-02-22
* bpo-46659: Update the test on the mbcs codec alias (GH-31168)Victor Stinner2022-02-06
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-11
* bpo-45668: Fix PGO tests without test extensions (GH-29315)Christian Heimes2021-11-01
* bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...Serhiy Storchaka2021-10-14
* bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...Serhiy Storchaka2021-10-14
* bpo-37330: open() no longer accept 'U' in file mode (GH-28118)Victor Stinner2021-09-02
* bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH...Max Bernstein2020-10-17
* bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)Hai Shi2020-10-16
* bpo-39337: encodings.normalize_encoding() now ignores non-ASCII characters (G...Hai Shi2020-10-14
* bpo-39337: Add a test case for normalizing of codec names (GH-19069)Hai Shi2020-10-08
* bpo-41842: Add codecs.unregister() function (GH-22360)Hai Shi2020-09-28
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21823)Victor Stinner2020-08-11
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-03
* bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16...Victor Stinner2020-03-04
* bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666)Chris A2020-03-02
* bpo-30566: Fix IndexError when using punycode codec (GH-18632)Berker Peksag2020-02-25
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-19
* bpo-37330: open() no longer accept 'U' in file mode (GH-16959)Victor Stinner2019-10-28
* bpo-37876: Tests for ROT-13 codec (GH-15314)Zeth2019-09-09
* bpo-36311: Fixes decoding multibyte characters around chunk boundaries and im...Steve Dower2019-08-21
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-01
* bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)Serhiy Storchaka2019-06-25
* bpo-36778: Remove outdated comment from CodePageTest (GH-13807)Victor Stinner2019-06-04
* bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)Ammar Askar2019-05-31
* bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779)Jelle Zijlstra2019-05-22
* bpo-36778: cp65001 encoding becomes an alias to utf_8 (GH-13230)Victor Stinner2019-05-10
* bpo-35920: Windows 10 ARM32 platform support (GH-11774)Paul Monson2019-04-25
* bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603)Serhiy Storchaka2019-03-30
* bpo-36312: Fix decoders for some code pages. (GH-12369)Serhiy Storchaka2019-03-20
* bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-18
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)Serhiy Storchaka2019-03-05
* bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)Serhiy Storchaka2018-12-03
* bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759)Victor Stinner2018-11-28
* bpo-34523: Support surrogatepass in locale codecs (GH-8995)Victor Stinner2018-08-29
* bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences s...Zackery Spytz2018-08-19
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-13
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499)Serhiy Storchaka2017-11-29
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)Serhiy Storchaka2017-10-20
* Issue #25270: Merge from 3.5Berker Peksag2016-09-16
|\
| * Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an...Berker Peksag2016-09-16
* | #27364: Deprecate invalid escape strings in str/byutes.R David Murray2016-09-08
* | #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-08
* | Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec ...Steve Dower2016-09-06
* | Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-24