379 Commits (b775106d940e3d77c8af7967545bb9a5b7b162df)

Author SHA1 Message Date
Ethan Furman b775106d94
bpo-40066: Enum: modify `repr()` and `str()` (GH-22392) 5 years ago
Zackery Spytz 8aabfa8550
bpo-43405: Fix DeprecationWarnings in test_unicode (GH-24754) 5 years ago
Inada Naoki 91a639a094
bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927) 5 years ago
Serhiy Storchaka cf19cc3b92
bpo-27772: Make preceding width with 0 valid in string format. (GH-11270) 5 years ago
Ronald Oussoren 41761933c1
bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) 5 years ago
Hai Shi c9f696cb96
bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513) 5 years ago
Serhiy Storchaka 4c8f09d7ce
bpo-36346: Make using the legacy Unicode C API optional (GH-21437) 6 years ago
Hai Shi deb016224c
bpo-40275: Use new test.support helper submodules in tests (GH-21317) 6 years ago
Inada Naoki 038dd0f79d
bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933) 6 years ago
Serhiy Storchaka f9bab74d5b
bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006) 6 years ago
Serhiy Storchaka 5650e76f63
bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing non-BMP characters on Windows. (GH-20053) 6 years ago
Inada Naoki 3a8c56295d
Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) 6 years ago
Inada Naoki c7ad974d34
bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) 6 years ago
Benjamin Peterson 51796e5d26
Update some www.unicode.org URLs to use HTTPS. (GH-18912) 6 years ago
Serhiy Storchaka 1f21eaa15e
bpo-15999: Clean up of handling boolean arguments. (GH-15610) 6 years ago
Greg Price 6bccbe7dfb bpo-36502: Correct documentation of str.isspace() (GH-15019) 6 years ago
Hai Shi 5623ac87bb bpo-37476: Adding tests for asutf8 and asutf8andsize (GH-14531) 7 years ago
Victor Stinner 22eb689cf3
bpo-37388: Development mode check encoding and errors (GH-14341) 7 years ago
Kingsley M b015fc86f7 bpo-36549: str.capitalize now titlecases the first character instead of uppercasing it (GH-12804) 7 years ago
Inada Naoki 6a16b18224
bpo-36297: remove "unicode_internal" codec (GH-12342) 7 years ago
Serhiy Storchaka 44cc4822bb
bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516) 7 years ago
Victor Stinner 998b806366
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187) 7 years ago
Victor Stinner 886483e2b9
bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080) 7 years ago
Zackery Spytz e349bf2358 bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences starting with "+". (GH-8741) 7 years ago
INADA Naoki a49ac99029
bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342) 8 years ago
Serhiy Storchaka 9b6c60cbce
bpo-31979: Simplify transforming decimals to ASCII (#4336) 8 years ago
Serhiy Storchaka 5075416b8f bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790) 9 years ago
Victor Stinner d6debb24e0 bpo-29919: Remove unused imports found by pyflakes (#137) 9 years ago
Martijn Pieters d7e64337ef bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#51) 9 years ago
Martin Panter b71c0956d0 Issues #1621, #29145: Test for str.join() overflow 9 years ago
Serhiy Storchaka 8cbd3df3ce Issue #28992: Use bytes.fromhex(). 9 years ago
Xiang Zhang b211068f5c Issue #28822: Adjust indices handling of PyUnicode_FindChar(). 9 years ago
Martin Panter 2f9171d900 Fix spelling and grammar in code comments and documentation 9 years ago
Eric V. Smith 5646648678 Issue 28128: Print out better error/warning messages for invalid string escapes. Backport to 3.6. 9 years ago
Eric V. Smith 42454af094 Issue 28128: Print out better error/warning messages for invalid string escapes. 9 years ago
Serhiy Storchaka 9c0e1f83af Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). 9 years ago
Serhiy Storchaka 0a6ef790e4 test_invalid_sequences seems don't have to stay in CAPITest. 9 years ago
Serhiy Storchaka cc164232aa Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). 9 years ago
Serhiy Storchaka 63b5b6fd45 Moved Unicode C API related tests to separate test class. 9 years ago
R David Murray 110b6fecbb #27364: Deprecate invalid escape strings in str/byutes. 9 years ago
R David Murray 44b548dda8 #27364: fix "incorrect" uses of escape character in the stdlib. 9 years ago
Guido van Rossum 97c1adf393 Anti-registration of various ABC methods. 9 years ago
Martin Panter 6245cb3c01 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc 10 years ago
Martin Panter 0d0db6cc1e Issue #26712: Unify (r)split, (l/r)strip tests into string_tests 10 years ago
Martin Panter 152a19c6bd Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest 10 years ago
Serhiy Storchaka fbb1c5ee06 Issue #26494: Fixed crash on iterating exhausting iterators. 10 years ago
Victor Stinner 337986740f Issue #26464: Fix unicode_fast_translate() again 10 years ago
Victor Stinner 6c9aa8f2bf Fix str.translate() 10 years ago
Serhiy Storchaka 31b9410654 Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. 10 years ago
Serhiy Storchaka e800941d66 Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. 10 years ago