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
...
*
|
|
#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
*
|
|
Port encoders from Py_UNICODE API to unicode object API.
Martin v. Löwis
2011-11-10
1
-188/+187
*
|
|
Strip trailing spaces
Victor Stinner
2011-11-08
1
-4/+4
*
|
|
Fix a compiler warning: use unsiged for maxchar in unicode_widen()
Victor Stinner
2011-11-08
1
-1/+1
*
|
|
Fix the code page decoder
Victor Stinner
2011-11-08
1
-17/+44
*
|
|
Fix missing goto
Antoine Pitrou
2011-11-08
1
-0/+1
*
|
|
Make _PyUnicode_FromId return borrowed references.
Martin v. Löwis
2011-11-07
1
-1/+0
*
|
|
Change decoders to use Unicode API instead of Py_UNICODE.
Martin v. Löwis
2011-11-08
1
-420/+292
*
|
|
Fix gdb/libpython.py for not ready Unicode strings
Victor Stinner
2011-11-04
1
-2/+5
*
|
|
Replace tabs by spaces
Victor Stinner
2011-11-04
1
-46/+46
*
|
|
Drop Py_UNICODE based encode exceptions.
Martin v. Löwis
2011-11-04
1
-60/+22
*
|
|
Port code page codec to Unicode API.
Martin v. Löwis
2011-11-04
1
-54/+69
*
|
|
Fix a compiler warning in unicode_encode_ucs1()
Victor Stinner
2011-11-03
1
-1/+1
*
|
|
Fix PyUnicode_EncodeCharmap()
Victor Stinner
2011-11-03
1
-1/+1
*
|
|
Replace PyUnicodeObject type by PyObject
Victor Stinner
2011-11-03
1
-134/+124
*
|
|
Cleanup decode_code_page_stateful() and encode_code_page()
Victor Stinner
2011-11-03
1
-111/+75
*
|
|
Adapt the code page encoder to the new unicode_encode_call_errorhandler()
Victor Stinner
2011-11-03
1
-34/+50
*
|
|
Fix a compile error (apparently Windows only) introduced in 295fdfd4f422
Brian Curtin
2011-11-02
1
-2/+3
*
|
|
Port UCS1 and charmap codecs to new API.
Martin v. Löwis
2011-11-02
1
-84/+127
*
|
|
Introduce PyObject* API for raising encode errors.
Martin v. Löwis
2011-11-02
1
-3/+49
*
|
|
Drop Py_UCS4_ functions. Closes #13246.
Martin v. Löwis
2011-10-31
1
-10/+90
*
|
|
PyUnicode_AsUnicodeCopy() uses PyUnicode_AsUnicodeAndSize() to get directly t...
Victor Stinner
2011-10-23
1
-4/+4
*
|
|
Fix PyUnicode_InternImmortal(): PyUnicode_InternInPlace() may changes *p
Victor Stinner
2011-10-23
1
-3/+1
*
|
|
Cast directly to unsigned char, instead of using Py_CHARMASK
Victor Stinner
2011-10-23
1
-2/+2
*
|
|
Replace PyUnicodeObject* by PyObject* where it was irrevelant
Victor Stinner
2011-10-23
1
-139/+126
*
|
|
Fix data variable in _PyUnicode_Dump() for compact ASCII
Victor Stinner
2011-10-23
1
-2/+10
*
|
|
Remove last references to the removed Unicode free list
Victor Stinner
2011-10-23
1
-23/+0
*
|
|
PyUnicode_FSDecoder() ensures that the decoded string is ready
Victor Stinner
2011-10-26
1
-0/+4
*
|
|
Fix unicode_subtype_new() on debug build
Victor Stinner
2011-10-22
1
-1/+1
*
|
|
Remove unused variable.
Ezio Melotti
2011-10-21
1
-1/+0
*
|
|
#12753: Add support for Unicode name aliases and named sequences.
Ezio Melotti
2011-10-21
1
-1/+1
*
|
|
Add consistency check to _PyUnicode_New()
Victor Stinner
2011-10-18
1
-0/+1
*
|
|
Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore
Victor Stinner
2011-10-18
1
-141/+609
*
|
|
remove some duplication
Benjamin Peterson
2011-10-15
1
-10/+4
*
|
|
Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
Victor Stinner
2011-10-14
1
-60/+58
*
|
|
Reuse the stringlib in findchar(), and make its signature more convenient
Antoine Pitrou
2011-10-13
1
-39/+41
*
|
|
Optimize unicode_subscript() for step != 1 and ascii strings
Victor Stinner
2011-10-12
1
-8/+12
*
|
|
Don't use PyUnicode_MAX_CHAR_VALUE() macro in Py_MAX()
Victor Stinner
2011-10-12
1
-2/+3
[prev]
[next]