summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue 21375: Fix possible Py_ssizet overflow in heapq.Raymond Hettinger2014-05-031-8/+8
* Issue #21321: itertools.islice() now releases the reference to the source ite...Antoine Pitrou2014-04-291-3/+10
* Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristján Valur Jónsson2014-04-253-48/+25
* #15840: make docs consistent by saying operations on closed files raise Value...Andrew Kuchling2014-04-151-2/+2
* add missing NULL checkBenjamin Peterson2014-04-141-5/+9
* when an exception is raised in fdopen, never close the fd (changing on my min...Benjamin Peterson2014-04-141-14/+27
* disallow a negative idx parameterBenjamin Peterson2014-04-141-8/+10
* in scan_once, prevent the reading of arbitrary memory when passed a negative ...Benjamin Peterson2014-04-141-2/+8
* make sure fdopen always closes the fd in error cases (closes #21191)Benjamin Peterson2014-04-091-4/+12
* fix overflow detection of strop.expandtabsBenjamin Peterson2014-03-311-13/+15
* Issue #6676: Ensure a meaningful exception is raised when attemptingNed Deily2014-03-271-1/+1
* fix ctypes test alignment assumptions (closes #20946)Benjamin Peterson2014-03-161-3/+3
* #13530: port to 2.7 branch (document what os.lseek returns).Georg Brandl2014-03-111-1/+2
* Issue #20283: RE pattern methods now accept the string keyword parametersSerhiy Storchaka2014-03-061-16/+81
* finish backing out #19081Benjamin Peterson2014-02-161-241/+53
* backout #19081 to fix #20621Benjamin Peterson2014-02-161-102/+66
* Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-121-2/+7
* avoid name clash with posix_close (closes #20594)Benjamin Peterson2014-02-111-2/+6
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-0911-66/+35
* Issue #20374: delete spurious empty lineNed Deily2014-02-061-1/+0
* Issue #20374: Avoid compiler warnings when compiling readline with libedit.Ned Deily2014-02-061-0/+9
* Issue #20368: The null character now correctly passed from Tcl to Python (inSerhiy Storchaka2014-02-031-99/+116
* Remove inaccurate comment and a the related recently addedGregory P. Smith2014-01-281-7/+0
* Issue #19081: Remove the zipimporter.files reference as the zip TOCGregory P. Smith2014-01-271-55/+97
* new plan: just remove typecasts (closes #20374)Benjamin Peterson2014-01-241-4/+4
* use new readline function types (closes #20374)Benjamin Peterson2014-01-241-3/+3
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-162-0/+0
* remove overly strict assertion (closes #20251)Benjamin Peterson2014-01-141-1/+0
* correct defaultdict signature in docstring (closes #20250)Benjamin Peterson2014-01-141-1/+3
* complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-141-0/+4
* Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly a...Antoine Pitrou2014-01-091-2/+5
* fix zipimport ref leakBenjamin Peterson2014-01-091-3/+1
* cleanup for the issue 19081 fix - pull the file open and close outside of theGregory P. Smith2014-01-081-8/+8
* Should fix the issue19081 fix on Windows. Don't let the previousGregory P. Smith2014-01-071-1/+4
* Fixes issue19081: When a zipimport .zip file in sys.path being importedGregory P. Smith2014-01-061-53/+241
* Issue #20026: Fix the sqlite module to handle correctly invalid isolation levelVictor Stinner2013-12-191-1/+4
* Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-191-14/+20
* remove trailing spaces.Gregory P. Smith2013-12-181-7/+7
* Issue #16404: Add checks for return value of PyInt_FromLong() inSerhiy Storchaka2013-12-171-8/+1
* Issue #17919: Fixed integer overflow in the eventmask parameter.Serhiy Storchaka2013-12-141-7/+25
* Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.Serhiy Storchaka2013-12-131-3/+2
* Issue #14432: Generator now clears the borrowed reference to the thread stateVictor Stinner2013-12-131-0/+94
* Issue #19099: The struct module now supports Unicode format strings.Serhiy Storchaka2013-12-081-4/+19
* Closes #19878: Fix segfault in bz2 module.Nadeem Vawda2013-12-081-7/+10
* Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.Alexandre Vassalotti2013-12-011-63/+1
* Issue #6477: Added pickling support for singletons and their types.Alexandre Vassalotti2013-12-011-1/+63
* Fix indentation from previous commitEli Bendersky2013-11-281-2/+2
* Issue #19815: Fix segfault when parsing empty namespace declaration.Eli Bendersky2013-11-281-1/+4
* Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-36/+13
* backport #18985: Improve fcntl documentation.R David Murray2013-11-071-11/+13