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
*
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
*
|
Port code page codec to Unicode API.
Martin v. Löwis
2011-11-04
1
-54/+69
*
|
Port error handlers from Py_UNICODE indexing to code point indexing.
Martin v. Löwis
2011-11-04
1
-0/+5
*
|
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
2
-146/+132
*
|
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
2
-101/+90
*
|
merge 3.2
Benjamin Peterson
2011-10-30
1
-1/+1
|
\
\
|
|
/
|
*
remove unused variable
Benjamin Peterson
2011-10-30
1
-1/+1
*
|
Fix the return value of set_discard (issue #10519)
Petri Lehtinen
2011-10-30
1
-2/+3
|
\
\
|
|
/
|
*
Fix the return value of set_discard (issue #10519)
Petri Lehtinen
2011-10-30
1
-2/+3
*
|
Avoid unnecessary recursive function calls (#closes #10519)
Petri Lehtinen
2011-10-30
1
-2/+2
|
\
\
|
|
/
[next]