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
*
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
|
\
\
|
|
/
|
*
Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().
Serhiy Storchaka
2016-10-08
1
-1/+44
*
|
test_invalid_sequences seems don't have to stay in CAPITest.
Serhiy Storchaka
2016-10-02
1
-7/+7
*
|
Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4().
Serhiy Storchaka
2016-10-02
1
-0/+17
|
\
\
|
|
/
|
*
Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4().
Serhiy Storchaka
2016-10-02
1
-0/+17
*
|
Moved Unicode C API related tests to separate test class.
Serhiy Storchaka
2016-10-02
1
-114/+117
|
\
\
|
|
/
|
*
Moved Unicode C API related tests to separate test class.
Serhiy Storchaka
2016-10-02
1
-114/+117
*
|
#27364: Deprecate invalid escape strings in str/byutes.
R David Murray
2016-09-08
1
-0/+7
*
|
#27364: fix "incorrect" uses of escape character in the stdlib.
R David Murray
2016-09-08
1
-2/+2
*
|
Anti-registration of various ABC methods.
Guido van Rossum
2016-08-18
1
-0/+23
|
/
*
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
Martin Panter
2016-04-15
1
-1/+1
*
Issue #26712: Unify (r)split, (l/r)strip tests into string_tests
Martin Panter
2016-04-10
1
-4/+0
*
Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest
Martin Panter
2016-04-06
1
-8/+8
*
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
1
-0/+4
*
Issue #26464: Fix unicode_fast_translate() again
Victor Stinner
2016-03-01
1
-4/+10
*
Fix str.translate()
Victor Stinner
2016-03-01
1
-0/+4
*
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
Serhiy Storchaka
2015-12-02
1
-0/+17
|
\
|
*
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
Serhiy Storchaka
2015-12-02
1
-0/+17
*
|
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka
2015-11-25
1
-4/+7
|
\
\
|
|
/
|
*
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka
2015-11-25
1
-4/+7
*
|
Issue #22643: Skip test_case_operation_overflow on computers with low memory.
Serhiy Storchaka
2015-11-07
1
-1/+9
|
\
\
|
|
/
|
*
Issue #22643: Skip test_case_operation_overflow on computers with low memory.
Serhiy Storchaka
2015-11-07
1
-1/+9
*
|
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:
Serhiy Storchaka
2015-10-02
1
-1/+2
|
\
\
|
|
/
|
*
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:
Serhiy Storchaka
2015-10-02
1
-1/+2
*
|
Issue #22681: Added support for the koi8_t encoding.
Serhiy Storchaka
2015-05-12
1
-3/+4
*
|
Issue #22682: Added support for the kz1048 encoding.
Serhiy Storchaka
2015-05-12
1
-2/+2
*
|
Added explicit tests for issue #23803.
Serhiy Storchaka
2015-03-29
1
-0/+2
|
\
\
|
|
/
|
*
Issue #23803: Fixed str.partition() and str.rpartition() when a separator
Serhiy Storchaka
2015-03-29
1
-0/+2
*
|
Added tests for mixed kinds of Unicode strings.
Serhiy Storchaka
2015-03-24
1
-0/+150
|
\
\
|
|
/
|
*
Added tests for mixed kinds of Unicode strings.
Serhiy Storchaka
2015-03-24
1
-0/+150
*
|
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Serhiy Storchaka
2015-03-12
1
-47/+9
|
\
\
|
|
/
[next]