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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue 21375: Fix possible Py_ssizet overflow in heapq.
Raymond Hettinger
2014-05-03
1
-8/+8
*
Issue #21321: itertools.islice() now releases the reference to the source ite...
Antoine Pitrou
2014-04-29
1
-3/+10
*
Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize
Kristján Valur Jónsson
2014-04-25
3
-48/+25
*
#15840: make docs consistent by saying operations on closed files raise Value...
Andrew Kuchling
2014-04-15
1
-2/+2
*
add missing NULL check
Benjamin Peterson
2014-04-14
1
-5/+9
*
when an exception is raised in fdopen, never close the fd (changing on my min...
Benjamin Peterson
2014-04-14
1
-14/+27
*
disallow a negative idx parameter
Benjamin Peterson
2014-04-14
1
-8/+10
*
in scan_once, prevent the reading of arbitrary memory when passed a negative ...
Benjamin Peterson
2014-04-14
1
-2/+8
*
make sure fdopen always closes the fd in error cases (closes #21191)
Benjamin Peterson
2014-04-09
1
-4/+12
*
fix overflow detection of strop.expandtabs
Benjamin Peterson
2014-03-31
1
-13/+15
*
Issue #6676: Ensure a meaningful exception is raised when attempting
Ned Deily
2014-03-27
1
-1/+1
*
fix ctypes test alignment assumptions (closes #20946)
Benjamin Peterson
2014-03-16
1
-3/+3
*
#13530: port to 2.7 branch (document what os.lseek returns).
Georg Brandl
2014-03-11
1
-1/+2
*
Issue #20283: RE pattern methods now accept the string keyword parameters
Serhiy Storchaka
2014-03-06
1
-16/+81
*
finish backing out #19081
Benjamin Peterson
2014-02-16
1
-241/+53
*
backout #19081 to fix #20621
Benjamin Peterson
2014-02-16
1
-102/+66
*
Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.
Serhiy Storchaka
2014-02-12
1
-2/+7
*
avoid name clash with posix_close (closes #20594)
Benjamin Peterson
2014-02-11
1
-2/+6
*
Issue #20437: Fixed 43 potential bugs when deleting objects references.
Serhiy Storchaka
2014-02-09
11
-66/+35
*
Issue #20374: delete spurious empty line
Ned Deily
2014-02-06
1
-1/+0
*
Issue #20374: Avoid compiler warnings when compiling readline with libedit.
Ned Deily
2014-02-06
1
-0/+9
*
Issue #20368: The null character now correctly passed from Tcl to Python (in
Serhiy Storchaka
2014-02-03
1
-99/+116
*
Remove inaccurate comment and a the related recently added
Gregory P. Smith
2014-01-28
1
-7/+0
*
Issue #19081: Remove the zipimporter.files reference as the zip TOC
Gregory P. Smith
2014-01-27
1
-55/+97
*
new plan: just remove typecasts (closes #20374)
Benjamin Peterson
2014-01-24
1
-4/+4
*
use new readline function types (closes #20374)
Benjamin Peterson
2014-01-24
1
-3/+3
*
Issue #19936: Added executable bits or shebang lines to Python scripts which
Serhiy Storchaka
2014-01-16
2
-0/+0
*
remove overly strict assertion (closes #20251)
Benjamin Peterson
2014-01-14
1
-1/+0
*
correct defaultdict signature in docstring (closes #20250)
Benjamin Peterson
2014-01-14
1
-1/+3
*
complain when nbytes > buflen to fix possible buffer overflow (closes #20246)
Benjamin Peterson
2014-01-14
1
-0/+4
*
Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly a...
Antoine Pitrou
2014-01-09
1
-2/+5
*
fix zipimport ref leak
Benjamin Peterson
2014-01-09
1
-3/+1
*
cleanup for the issue 19081 fix - pull the file open and close outside of the
Gregory P. Smith
2014-01-08
1
-8/+8
*
Should fix the issue19081 fix on Windows. Don't let the previous
Gregory P. Smith
2014-01-07
1
-1/+4
*
Fixes issue19081: When a zipimport .zip file in sys.path being imported
Gregory P. Smith
2014-01-06
1
-53/+241
*
Issue #20026: Fix the sqlite module to handle correctly invalid isolation level
Victor Stinner
2013-12-19
1
-1/+4
*
Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and
Serhiy Storchaka
2013-12-19
1
-14/+20
*
remove trailing spaces.
Gregory P. Smith
2013-12-18
1
-7/+7
*
Issue #16404: Add checks for return value of PyInt_FromLong() in
Serhiy Storchaka
2013-12-17
1
-8/+1
*
Issue #17919: Fixed integer overflow in the eventmask parameter.
Serhiy Storchaka
2013-12-14
1
-7/+25
*
Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
Serhiy Storchaka
2013-12-13
1
-3/+2
*
Issue #14432: Generator now clears the borrowed reference to the thread state
Victor Stinner
2013-12-13
1
-0/+94
*
Issue #19099: The struct module now supports Unicode format strings.
Serhiy Storchaka
2013-12-08
1
-4/+19
*
Closes #19878: Fix segfault in bz2 module.
Nadeem Vawda
2013-12-08
1
-7/+10
*
Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.
Alexandre Vassalotti
2013-12-01
1
-63/+1
*
Issue #6477: Added pickling support for singletons and their types.
Alexandre Vassalotti
2013-12-01
1
-1/+63
*
Fix indentation from previous commit
Eli Bendersky
2013-11-28
1
-2/+2
*
Issue #19815: Fix segfault when parsing empty namespace declaration.
Eli Bendersky
2013-11-28
1
-1/+4
*
Issue #11489: JSON decoder now accepts lone surrogates.
Serhiy Storchaka
2013-11-26
1
-36/+13
*
backport #18985: Improve fcntl documentation.
R David Murray
2013-11-07
1
-11/+13
[next]