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
/
Objects
/
unicodeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
|
Create unicode_result_unchanged() subfunction
Victor Stinner
2011-12-11
1
-69/+48
*
|
|
Fix fixup() for unchanged unicode subtype
Victor Stinner
2011-12-11
1
-33/+33
*
|
|
unicode_fromascii() doesn't check string content twice in debug mode
Victor Stinner
2011-12-11
1
-6/+3
*
|
|
Call directly PyUnicode_DecodeUTF8Stateful() instead of PyUnicode_DecodeUTF8()
Victor Stinner
2011-12-11
1
-33/+14
*
|
|
Use directly unicode_empty instead of PyUnicode_New(0, 0)
Victor Stinner
2011-12-11
1
-6/+12
*
|
|
Move the slowest UTF-8 decoder to its own subfunction
Victor Stinner
2011-12-11
1
-128/+98
*
|
|
Fix error handling in resize_compact()
Victor Stinner
2011-12-11
1
-5/+9
*
|
|
PyUnicode_FromWideChar() and PyUnicode_FromUnicode() raise a ValueError if a
Victor Stinner
2011-12-08
1
-33/+34
*
|
|
Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macros
Victor Stinner
2011-11-29
1
-26/+19
*
|
|
Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlers
Victor Stinner
2011-11-25
1
-113/+18
*
|
|
and back to the "magic" formula (with a comment) it is
Benjamin Peterson
2011-11-23
1
-15/+3
*
|
|
cave to those who like readable code
Benjamin Peterson
2011-11-23
1
-1/+15
*
|
|
fix compiler warning by implementing this more cleverly
Benjamin Peterson
2011-11-22
1
-6/+1
*
|
|
find_maxchar_surrogates() reuses surrogate macros
Victor Stinner
2011-11-22
1
-4/+4
*
|
|
Issue #13441: Disable temporary the check on the maximum character until
Victor Stinner
2011-11-22
1
-20/+12
*
|
|
Fix compiler warnings
Victor Stinner
2011-11-22
1
-1/+2
*
|
|
(Merge 3.2) Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()
Victor Stinner
2011-11-22
1
-4/+8
*
|
|
PyUnicode_FromKindAndData() fails with a ValueError if size < 0
Victor Stinner
2011-11-22
1
-1/+4
*
|
|
UTF-8 decoder: set consumed value in the latin1 fast-path
Victor Stinner
2011-11-22
1
-0/+3
*
|
|
Replace _PyUnicode_READY_REPLACE() and _PyUnicode_ReadyReplace() with unicode...
Victor Stinner
2011-11-22
1
-143/+150
*
|
|
Rewrite PyUnicode_TransformDecimalToASCII() to use the new Unicode API
Victor Stinner
2011-11-21
1
-17/+26
*
|
|
Remove an unused variable from PyUnicode_Copy()
Victor Stinner
2011-11-21
1
-2/+0
*
|
|
Simplify PyUnicode_Copy()
Victor Stinner
2011-11-21
1
-26/+7
*
|
|
Fix a compiler warning in _PyUnicode_CheckConsistency()
Victor Stinner
2011-11-21
1
-1/+1
*
|
|
Rewrite PyUnicode_EncodeDecimal() to use the new Unicode API
Victor Stinner
2011-11-21
1
-44/+53
*
|
|
Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.
Antoine Pitrou
2011-11-21
1
-107/+121
*
|
|
Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximum
Victor Stinner
2011-11-21
1
-0/+13
*
|
|
Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
Victor Stinner
2011-11-21
1
-2/+2
*
|
|
PyObject_Str() ensures that the result string is ready
Victor Stinner
2011-11-20
1
-2/+0
*
|
|
PyUnicode_AsUTF32String() calls directly _PyUnicode_EncodeUTF32(),
Victor Stinner
2011-11-20
1
-6/+1
*
|
|
_PyUnicode_CheckConsistency() also checks maxchar maximum value,
Victor Stinner
2011-11-20
1
-3/+9
*
|
|
Remove the two ugly and unused WRITE_ASCII_OR_WSTR and WRITE_WSTR macros
Victor Stinner
2011-11-20
1
-18/+0
*
|
|
Reuse surrogate macros in UTF-16 decoder
Victor Stinner
2011-11-20
1
-5/+4
*
|
|
charmap_encoding_error() uses the new Unicode API
Victor Stinner
2011-11-20
1
-3/+13
*
|
|
Use PyUnicode_EncodeCodePage() instead of PyUnicode_EncodeMBCS() with
Victor Stinner
2011-11-20
1
-16/+3
*
|
|
charmap encoders uses Py_UCS4, not Py_UNICODE
Victor Stinner
2011-11-20
1
-7/+4
*
|
|
Catch PyUnicode_AS_UNICODE() errors
Victor Stinner
2011-11-16
1
-11/+22
*
|
|
#13406: silence deprecation warnings in test_codecs.
Ezio Melotti
2011-11-16
1
-1/+1
*
|
|
Issue #13333: The UTF-7 decoder now accepts lone surrogates
Antoine Pitrou
2011-11-15
1
-9/+7
|
\
\
\
|
|
/
/
|
*
|
Issue #13333: The UTF-7 decoder now accepts lone surrogates
Antoine Pitrou
2011-11-15
1
-9/+5
*
|
|
Sanitize reference management in the utf-8 encoder
Antoine Pitrou
2011-11-12
1
-5/+4
*
|
|
Fix regression on 2-byte wchar_t systems (Windows)
Antoine Pitrou
2011-11-11
1
-7/+12
*
|
|
Avoid crashing because of an unaligned word access
Antoine Pitrou
2011-11-11
1
-1/+9
*
|
|
Issue #13149: Speed up append-only StringIO objects.
Antoine Pitrou
2011-11-10
1
-1/+1
*
|
|
Fix and deprecated the unicode_internal codec
Victor Stinner
2011-11-10
1
-6/+22
*
|
|
Prefer Py_UCS4 or wchar_t over Py_UNICODE
Victor Stinner
2011-11-10
1
-8/+7
*
|
|
PyUnicode_DecodeCharmap() uses the new Unicode API
Victor Stinner
2011-11-10
1
-7/+17
*
|
|
Avoid PyUnicode_AS_UNICODE in the UTF-8 encoder
Victor Stinner
2011-11-10
1
-4/+11
*
|
|
Fix "unicode_escape" encoder
Victor Stinner
2011-11-10
1
-1/+1
*
|
|
Fix UTF-7 encoder on Windows
Victor Stinner
2011-11-10
1
-6/+4
[prev]
[next]