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
Commit message (
Expand
)
Author
Age
Files
Lines
*
#13054: sys.maxunicode is now always 0x10FFFF.
Ezio Melotti
2011-09-28
5
-6/+23
*
Check size of wchar_t using the preprocessor
Victor Stinner
2011-09-28
1
-29/+27
*
PyUnicode_CopyCharacters() initializes overflow
Victor Stinner
2011-09-28
1
-0/+1
*
Mark PyUnicode_FromUCS[124] as private
Victor Stinner
2011-09-28
4
-13/+13
*
Oops, fix Py_MIN/Py_MAX case
Victor Stinner
2011-09-28
1
-2/+2
*
Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private
Victor Stinner
2011-09-28
2
-19/+10
*
fill_number() and format_string_internal() check for PyUnicode_CopyCharacters...
Victor Stinner
2011-09-28
1
-3/+8
*
fill_number() ensures that the 'digits' string is ready
Victor Stinner
2011-09-28
1
-1/+4
*
fill_char() can now propagate an error
Victor Stinner
2011-09-28
1
-25/+47
*
Strip trailing spaces in unicodeobject.[ch]
Victor Stinner
2011-09-28
2
-15/+15
*
Check for PyUnicode_CopyCharacters() failure
Victor Stinner
2011-09-28
2
-43/+87
*
PyUnicode_CopyCharacters() checks for buffer and character overflow
Victor Stinner
2011-09-28
2
-85/+92
*
Mark PyUnicode_CONVERT_BYTES as private
Victor Stinner
2011-09-28
2
-25/+25
*
Add versionadded directive to new API function.
Georg Brandl
2011-09-28
1
-0/+2
*
Rename new macros to conform to naming rules (function macros have "Py" prefi...
Georg Brandl
2011-09-28
5
-20/+20
*
Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODE
Victor Stinner
2011-09-28
1
-1/+1
*
merge heads
Benjamin Peterson
2011-09-28
16
-39/+39
|
\
|
*
#13012: use splitlines(keepends=True/False) instead of splitlines(0/1).
Ezio Melotti
2011-09-28
16
-39/+39
*
|
this isn't fixed on windows yet...
Benjamin Peterson
2011-09-28
1
-1/+4
|
/
*
this test works as expected now
Benjamin Peterson
2011-09-28
1
-6/+1
*
revert unintended change
Benjamin Peterson
2011-09-28
1
-1/+4
*
don't check that the first character is XID_Continue
Benjamin Peterson
2011-09-28
2
-5/+2
*
test_ctypes: Windows is no more a special case
Victor Stinner
2011-09-28
1
-6/+3
*
Fix struct sizes. Drop -1, since the resulting string was actually the larges...
Martin v. Löwis
2011-09-28
1
-6/+7
*
Use compile() instead of eval().
Martin v. Löwis
2011-09-28
1
-6/+4
*
Use eval instead of codecs.lookup to trigger UTF-8 generation.
Martin v. Löwis
2011-09-28
1
-6/+4
*
ACKS for PEP 393.
Martin v. Löwis
2011-09-28
1
-1/+2
*
Update for PEP 393.
Martin v. Löwis
2011-09-28
1
-12/+25
*
Implement PEP 393.
Martin v. Löwis
2011-09-28
102
-5392/+8114
*
Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.
Meador Inge
2011-09-28
3
-0/+5
|
\
|
*
Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.
Meador Inge
2011-09-28
3
-0/+5
*
|
Fix markup.
Georg Brandl
2011-09-27
1
-2/+2
*
|
merged
Martin v. Löwis
2011-09-25
1
-0/+3
|
\
\
|
|
/
|
*
Depend setobject.o and dictobject.o on stringlib/eq.h.
Martin v. Löwis
2011-09-25
1
-0/+3
*
|
Issue #1621: Fix undefined behaviour from signed overflow in datetime module ...
Mark Dickinson
2011-09-25
4
-16/+14
*
|
Return +-Py_HUGE_VAL for tgamma(+-0) instead of risking FP exceptions by comp...
Mark Dickinson
2011-09-25
1
-1/+2
*
|
Issue #1621: Fix undefined behaviour from signed overflow in get_integer (str...
Mark Dickinson
2011-09-24
1
-9/+7
*
|
Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python.
Charles-François Natali
2011-09-24
3
-140/+19
*
|
Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple._...
Mark Dickinson
2011-09-24
5
-25/+26
*
|
Fix typo in comment: _PyHash_Double -> _Py_HashDouble.
Mark Dickinson
2011-09-24
1
-1/+1
*
|
Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.spli...
Mark Dickinson
2011-09-24
7
-16/+40
*
|
Merge #12973 itertools fix.
Mark Dickinson
2011-09-24
2
-4/+6
|
\
\
|
|
/
|
*
Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks St...
Mark Dickinson
2011-09-24
2
-4/+6
*
|
merge 3.2
Benjamin Peterson
2011-09-23
1
-6/+5
|
\
\
|
|
/
|
*
fix compiler compliant about \0 not being an opcode
Benjamin Peterson
2011-09-23
1
-6/+5
*
|
disable unused result warnings when possible
Benjamin Peterson
2011-09-23
2
-0/+65
*
|
Merge 3.2: Issue #7732: Don't open a directory as a file anymore while
Victor Stinner
2011-09-23
3
-1/+23
|
\
\
|
|
/
|
*
Issue #7732: Don't open a directory as a file anymore while importing a
Victor Stinner
2011-09-23
3
-2/+22
*
|
Merge 3.2: Issue #12931: Add a test with Unicode URI to test_xmlrpc
Victor Stinner
2011-09-22
1
-0/+4
|
\
\
|
|
/
|
*
Issue #12931: Add a test with Unicode URI to test_xmlrpc
Victor Stinner
2011-09-22
1
-0/+4
[next]