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
...
|
*
|
in scan_once, prevent the reading of arbitrary memory when passed a negative ...
Benjamin Peterson
2014-04-14
4
-2/+17
|
*
|
Remove references to the obsolete Mac Carbon modules in the GUI
Ned Deily
2014-04-12
1
-9/+5
|
*
|
Issue #21170: Removed invalid parameter names from unittest doc.
Terry Jan Reedy
2014-04-11
1
-2/+2
|
*
|
Issue #21172: isinstance check relaxed from dict to collections.Mapping.
Vinay Sajip
2014-04-10
2
-2/+10
|
*
|
teach 2to3 about 'yield from'
Benjamin Peterson
2014-04-10
3
-1/+11
|
*
|
add matrix multiplication operator support to 2to3
Benjamin Peterson
2014-04-10
6
-9/+19
|
*
|
Issue #21187: Fix OS X installer fail-to-build with Xcode 5.1.
Ned Deily
2014-04-09
1
-1/+1
|
*
|
Issue #20644: Keep build-installer.py in sync across active versions.
Ned Deily
2014-04-09
1
-77/+50
|
*
|
make sure fdopen always closes the fd in error cases (closes #21191)
Benjamin Peterson
2014-04-09
4
-6/+22
|
*
|
issue #21190: Fix the docs README link
Senthil Kumaran
2014-04-09
1
-1/+1
|
*
|
Issue #21179: Fix description of 'round' function for numbers.Real.
Mark Dickinson
2014-04-09
1
-2/+2
|
*
|
use imperative
Benjamin Peterson
2014-04-08
1
-1/+1
|
*
|
PySequence_Fast generally returns a list (#16305)
Benjamin Peterson
2014-04-08
1
-1/+1
|
*
|
PySequence_Fast generally returns a list not a tuple (closes #16395)
Benjamin Peterson
2014-04-08
1
-4/+4
|
*
|
the name of the slot of nb_multiply not nb_mul
Benjamin Peterson
2014-04-08
1
-1/+2
|
*
|
fix verb (closes #21174)
Benjamin Peterson
2014-04-07
1
-3/+3
|
*
|
minor docfix (reported at docs@python.org) trace.py argument is --count not -...
Senthil Kumaran
2014-04-06
1
-2/+2
|
*
|
use with statement
Benjamin Peterson
2014-04-04
1
-12/+10
|
*
|
explicitly close file object (#21128)
Benjamin Peterson
2014-04-04
1
-0/+1
|
*
|
properly explicitly close file (#21128)
Benjamin Peterson
2014-04-04
1
-0/+1
|
*
|
make temporary read-only files writable, so rmtree can remove them (#21128)
Benjamin Peterson
2014-04-04
1
-0/+3
|
*
|
note that the hash of an arbitrary object is only derived from its address (c...
Benjamin Peterson
2014-04-04
1
-1/+1
|
*
|
Issue #21149: Improved thread-safety in logging cleanup during interpreter sh...
Vinay Sajip
2014-04-04
2
-10/+15
|
*
|
properly close files in test_zipfile (#20887)
Benjamin Peterson
2014-04-03
1
-28/+46
|
*
|
make sure to test UnicodeEncodeError, too
Benjamin Peterson
2014-04-02
1
-1/+1
|
*
|
bail in unicode error's __str__ methods if the objects are not properly initi...
Benjamin Peterson
2014-04-02
3
-0/+21
|
*
|
Issue 21125: minor wording tweak.
Raymond Hettinger
2014-04-02
1
-1/+1
|
*
|
Issue #15067: Remove reference to a rejected PEP.
Zachary Ware
2014-04-01
1
-3/+0
|
*
|
use https docs url (#21115)
Benjamin Peterson
2014-03-31
1
-2/+2
|
*
|
add Ian Beer
Benjamin Peterson
2014-03-31
1
-0/+1
|
*
|
fix overflow detection of strop.expandtabs
Benjamin Peterson
2014-03-31
3
-13/+24
|
*
|
fix expandtabs overflow detection to be consistent and not rely on signed ove...
Benjamin Peterson
2014-03-30
1
-19/+19
|
*
|
add braces and fix indentation
Benjamin Peterson
2014-03-30
1
-17/+18
|
*
|
fix indentation and add braces
Benjamin Peterson
2014-03-30
1
-16/+17
|
*
|
support CDN purging
Benjamin Peterson
2014-03-30
1
-3/+48
|
*
|
Issue #21029: IDLE now colors print consistently as a keyword.
Raymond Hettinger
2014-03-30
2
-0/+7
|
*
|
Minor readability improvement.
Raymond Hettinger
2014-03-29
1
-1/+1
|
*
|
Issue #21093: Prevent failures of ctypes test_macholib on OS X if a
Ned Deily
2014-03-29
2
-2/+8
|
*
|
Update suspicious ignore file.
Georg Brandl
2014-03-28
1
-3/+2
|
*
|
Issue #17654: Ensure IDLE menus are customized properly on OS X for
Ned Deily
2014-03-28
12
-79/+125
|
*
|
Issue #6676: Ensure a meaningful exception is raised when attempting
Ned Deily
2014-03-27
4
-2/+24
|
*
|
Issue #20939: Use www.example.com instead of www.python.org to avoid test
Ned Deily
2014-03-27
4
-20/+28
|
*
|
backport: #20145: assertRaisesRegexp now raises a TypeError on bad regex.
R David Murray
2014-03-25
4
-2/+12
|
*
|
Issue #21038: Cleanup test_epoll.py
Victor Stinner
2014-03-25
1
-3/+0
|
*
|
Updated external link in documentation.
Vinay Sajip
2014-03-25
1
-1/+1
|
*
|
Closes #21045: make the Qt help build not look completely stupid
Georg Brandl
2014-03-25
1
-0/+8
|
*
|
Closes #18456: Doc fix: PyDict_Update only works with dict-like objects, not ...
Georg Brandl
2014-03-25
1
-2/+5
|
*
|
Issue #21058: NamedTemporaryFile() closes the FD on any error, not only Excep...
Victor Stinner
2014-03-25
1
-1/+1
|
*
|
Issue #21058: Fix a leak of file descriptor in tempfile.NamedTemporaryFile(),
Victor Stinner
2014-03-25
3
-2/+27
|
*
|
Issue #21043 - Remove CACert.org from the recommendations
Donald Stufft
2014-03-24
1
-2/+1
[prev]
[next]