summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* gh-81005: Refactor str tests to reflect that str and unicode are merged in Py...Daniel Fortunov2023-05-231-2728/+0
* Remove wrong comment about `repr` in `test_unicode` (#100495)Nikita Sobolev2022-12-241-1/+0
* gh-94808: improve test coverage of number formatting (#99472)Nikita Sobolev2022-12-241-5/+39
* gh-99482: remove `jython` compatibility parts from stdlib and tests (#99484)Nikita Sobolev2022-12-231-103/+97
* gh-78453: Move Unicode C API tests from test_unicode to test_capi.test_unicod...Serhiy Storchaka2022-11-141-502/+0
* gh-99430: Remove duplicated tests for old-styled classes (#99432)Nikita Sobolev2022-11-131-5/+0
* gh-94808: Improve coverage of `unicode_find` and `unicode_rfind` (#98648)Nikita Sobolev2022-10-251-0/+27
* gh-94808: Cover `str.rsplit` for UCS1, UCS2 or UCS4 (#98228)Nikita Sobolev2022-10-151-2/+6
* gh-97982: Factorize PyUnicode_Count() and unicode_count() code (#98025)Nikita Sobolev2022-10-121-0/+10
* gh-94808: Fix regex on exotic platforms (#98036)Jelle Zijlstra2022-10-071-2/+2
* gh-94808: Cover `%p` in `PyUnicode_FromFormat` (#96677)Nikita Sobolev2022-10-071-0/+19
* gh-94808: Cover `PyUnicode_Count` in CAPI (#96929)Nikita Sobolev2022-10-061-0/+38
* gh-95781: More strict format string checking in PyUnicode_FromFormatV() (GH-9...Serhiy Storchaka2022-08-081-13/+10
* gh-93575: Use correct way to calculate PyUnicode struct sizes (GH-93602)Christian Heimes2022-06-081-5/+18
* gh-92536: Update unicode struct size to ensure MemoryError is raised (GH-92867)Dennis Sweeney2022-05-171-10/+6
* gh-91576: Speed up iteration of strings (#91574)Kumar Aditya2022-04-181-0/+31
* Use assertEqual, not assertEquals, in test_unicode (GH-31718)Dennis Sweeney2022-03-071-4/+4
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-041-0/+24
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-171-1/+5
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-171-5/+1
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-161-1/+5
* bpo-45668: Fix PGO tests without test extensions (GH-29315)Christian Heimes2021-11-011-6/+19
* bpo-44891: Tests `id` preserving on `* 1` for `str` and `bytes` (GH-27745)Nikita Sobolev2021-08-131-0/+22
* bpo-28146: Fix a confusing error message in str.format() (GH-24213)Irit Katriel2021-05-131-2/+5
* bpo-44029: Remove Py_UNICODE APIs (GH-25881)Inada Naoki2021-05-071-34/+0
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-4/+5
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-5/+4
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-4/+5
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-311-4/+4
* bpo-43405: Fix DeprecationWarnings in test_unicode (GH-24754)Zackery Spytz2021-03-071-20/+24
* bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927)Inada Naoki2021-02-221-2/+4
* bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)Serhiy Storchaka2021-01-251-0/+6
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-081-0/+2
* bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)Hai Shi2020-10-161-1/+4
* bpo-36346: Make using the legacy Unicode C API optional (GH-21437)Serhiy Storchaka2020-07-101-0/+4
* bpo-40275: Use new test.support helper submodules in tests (GH-21317)Hai Shi2020-07-061-5/+7
* bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933)Inada Naoki2020-06-301-1/+3
* bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006)Serhiy Storchaka2020-06-211-16/+0
* bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...Serhiy Storchaka2020-05-121-0/+7
* Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985)Inada Naoki2020-03-141-22/+0
* bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659)Inada Naoki2020-03-141-0/+22
* Update some www.unicode.org URLs to use HTTPS. (GH-18912)Benjamin Peterson2020-03-111-1/+1
* bpo-15999: Clean up of handling boolean arguments. (GH-15610)Serhiy Storchaka2019-09-011-8/+8
* bpo-36502: Correct documentation of str.isspace() (GH-15019)Greg Price2019-08-141-1/+12
* bpo-37476: Adding tests for asutf8 and asutf8andsize (GH-14531)Hai Shi2019-07-201-0/+28
* bpo-37388: Development mode check encoding and errors (GH-14341)Victor Stinner2019-06-251-0/+62
* bpo-36549: str.capitalize now titlecases the first character instead of upper...Kingsley M2019-04-121-1/+1
* bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-181-22/+14
* bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516)Serhiy Storchaka2019-01-121-0/+6
* Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)Victor Stinner2018-09-111-4/+0