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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #13411: memoryview objects are now hashable when the underlying object ...
Antoine Pitrou
2011-11-21
3
-17/+53
*
Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.
Antoine Pitrou
2011-11-21
2
-107/+277
*
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
3
-5/+5
*
UnicodeTranslateError uses the new Unicode API
Victor Stinner
2011-11-21
1
-3/+3
*
UnicodeEncodeError uses the new Unicode API
Victor Stinner
2011-11-20
1
-3/+3
*
PyObject_Str() ensures that the result string is ready
Victor Stinner
2011-11-20
2
-2/+5
*
stringlib: remove unused STRINGLIB_FILL
Victor Stinner
2011-11-20
6
-6/+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
*
Issue #10227: Add an allocation cache for a single slice object.
Antoine Pitrou
2011-11-18
1
-7/+29
*
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
*
|
Issue #13389: Full garbage collection passes now clear the freelists for
Antoine Pitrou
2011-11-14
2
-6/+20
*
|
Use the small object allocator for small bytearrays
Antoine Pitrou
2011-11-12
1
-5/+5
*
|
Sanitize reference management in the utf-8 encoder
Antoine Pitrou
2011-11-12
1
-5/+4
*
|
Issue #13161: fix doc strings of __i*__ operators. Closes #13161
Eli Bendersky
2011-11-11
1
-10/+10
|
\
\
|
|
/
|
*
Issue #13161: fix doc strings of __i*__ operators
Eli Bendersky
2011-11-11
1
-10/+10
*
|
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
3
-9/+4
*
|
Change decoders to use Unicode API instead of Py_UNICODE.
Martin v. Löwis
2011-11-08
1
-420/+292
*
|
Revert "Accept None as start and stop parameters for list.index() and tuple.i...
Petri Lehtinen
2011-11-06
2
-22/+7
|
\
\
|
|
/
|
*
Revert "Accept None as start and stop parameters for list.index() and tuple.i...
Petri Lehtinen
2011-11-06
2
-22/+7
*
|
Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat.
Amaury Forgeot d'Arc
2011-11-06
1
-16/+2
*
|
Accept None as start and stop parameters for list.index() and tuple.index().
Petri Lehtinen
2011-11-05
2
-7/+22
|
\
\
|
|
/
|
*
Accept None as start and stop parameters for list.index() and tuple.index()
Petri Lehtinen
2011-11-05
2
-7/+22
*
|
add introspection to range objects (closes #9896)
Benjamin Peterson
2011-11-05
1
-1/+9
*
|
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
[next]