index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_unicode.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use assertEqual, not assertEquals, in test_unicode (GH-31718)
Dennis Sweeney
2022-03-07
1
-4/+4
*
bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)
Mark Shannon
2022-03-04
1
-0/+24
*
bpo-40066: [Enum] skip failing doc test (GH-30637)
Kumar Aditya
2022-01-17
1
-1/+5
*
Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...
Victor Stinner
2022-01-17
1
-5/+1
*
bpo-40066: [Enum] update str() and format() output (GH-30582)
Ethan Furman
2022-01-16
1
-1/+5
*
bpo-45668: Fix PGO tests without test extensions (GH-29315)
Christian Heimes
2021-11-01
1
-6/+19
*
bpo-44891: Tests `id` preserving on `* 1` for `str` and `bytes` (GH-27745)
Nikita Sobolev
2021-08-13
1
-0/+22
*
bpo-28146: Fix a confusing error message in str.format() (GH-24213)
Irit Katriel
2021-05-13
1
-2/+5
*
bpo-44029: Remove Py_UNICODE APIs (GH-25881)
Inada Naoki
2021-05-07
1
-34/+0
*
bpo-38659: [Enum] add _simple_enum decorator (GH-25497)
Ethan Furman
2021-04-21
1
-4/+5
*
Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)
Ethan Furman
2021-04-20
1
-5/+4
*
bpo-38659: [Enum] add _simple_enum decorator (GH-25285)
Ethan Furman
2021-04-20
1
-4/+5
*
bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)
Ethan Furman
2021-03-31
1
-4/+4
*
bpo-43405: Fix DeprecationWarnings in test_unicode (GH-24754)
Zackery Spytz
2021-03-07
1
-20/+24
*
bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927)
Inada Naoki
2021-02-22
1
-2/+4
*
bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)
Serhiy Storchaka
2021-01-25
1
-0/+6
*
bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)
Ronald Oussoren
2020-11-08
1
-0/+2
*
bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)
Hai Shi
2020-10-16
1
-1/+4
*
bpo-36346: Make using the legacy Unicode C API optional (GH-21437)
Serhiy Storchaka
2020-07-10
1
-0/+4
*
bpo-40275: Use new test.support helper submodules in tests (GH-21317)
Hai Shi
2020-07-06
1
-5/+7
*
bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933)
Inada Naoki
2020-06-30
1
-1/+3
*
bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006)
Serhiy Storchaka
2020-06-21
1
-16/+0
*
bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...
Serhiy Storchaka
2020-05-12
1
-0/+7
*
Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985)
Inada Naoki
2020-03-14
1
-22/+0
*
bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659)
Inada Naoki
2020-03-14
1
-0/+22
*
Update some www.unicode.org URLs to use HTTPS. (GH-18912)
Benjamin Peterson
2020-03-11
1
-1/+1
*
bpo-15999: Clean up of handling boolean arguments. (GH-15610)
Serhiy Storchaka
2019-09-01
1
-8/+8
*
bpo-36502: Correct documentation of str.isspace() (GH-15019)
Greg Price
2019-08-14
1
-1/+12
*
bpo-37476: Adding tests for asutf8 and asutf8andsize (GH-14531)
Hai Shi
2019-07-20
1
-0/+28
*
bpo-37388: Development mode check encoding and errors (GH-14341)
Victor Stinner
2019-06-25
1
-0/+62
*
bpo-36549: str.capitalize now titlecases the first character instead of upper...
Kingsley M
2019-04-12
1
-1/+1
*
bpo-36297: remove "unicode_internal" codec (GH-12342)
Inada Naoki
2019-03-18
1
-22/+14
*
bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516)
Serhiy Storchaka
2019-01-12
1
-0/+6
*
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)
Victor Stinner
2018-09-11
1
-4/+0
*
bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)
Victor Stinner
2018-09-07
1
-0/+4
*
bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences s...
Zackery Spytz
2018-08-19
1
-0/+4
*
bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342)
INADA Naoki
2018-01-27
1
-0/+5
*
bpo-31979: Simplify transforming decimals to ASCII (#4336)
Serhiy Storchaka
2017-11-13
1
-5/+8
*
bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790)
Serhiy Storchaka
2017-08-03
1
-0/+7
*
bpo-29919: Remove unused imports found by pyflakes (#137)
Victor Stinner
2017-03-27
1
-1/+0
*
bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ...
Martijn Pieters
2017-02-23
1
-0/+9
*
Issue #29145: Merge test from 3.6
Martin Panter
2017-01-14
1
-0/+7
|
\
|
*
Merge tests from 3.5
Martin Panter
2017-01-14
1
-0/+7
|
|
\
|
|
*
Issues #1621, #29145: Test for str.join() overflow
Martin Panter
2017-01-12
1
-0/+7
*
|
|
Issue #28992: Use bytes.fromhex().
Serhiy Storchaka
2016-12-21
1
-7/+4
*
|
|
Issue #28822: Adjust indices handling of PyUnicode_FindChar().
Xiang Zhang
2016-12-20
1
-0/+23
|
/
/
*
|
Merge spelling and grammar from 3.5
Martin Panter
2016-12-18
1
-1/+1
|
\
\
|
|
/
|
*
Fix spelling and grammar in code comments and documentation
Martin Panter
2016-12-18
1
-1/+1
*
|
Issue 28128: Print out better error/warning messages for invalid string escap...
Eric V. Smith
2016-10-31
1
-7/+0
*
|
Merge from 3.5.
Serhiy Storchaka
2016-10-08
1
-1/+44
|
\
\
|
|
/
[next]