summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Expand)AuthorAgeFilesLines
* Issue #23996: Avoid a crash when a delegated generator raises an unnormalized...Antoine Pitrou2015-04-261-0/+3
* Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytesVictor Stinner2015-04-241-0/+3
* merge 3.3 (#24044)Benjamin Peterson2015-04-231-0/+3
|\
| * merge 3.2 (#24044)Benjamin Peterson2015-04-231-0/+3
| |\
| | * properly handle malloc failure (closes #24044)Benjamin Peterson2015-04-231-0/+3
| | * Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. AnalysisSerhiy Storchaka2015-01-271-0/+12
* | | Issue #24031: make patchcheck now supports git checkouts, too.Christian Heimes2015-04-231-0/+4
* | | Issue #24029: Document the name binding behavior for submodule imports.Barry Warsaw2015-04-221-0/+5
* | | Issue #23008: Fixed resolving attributes with boolean value is False in pydoc.Serhiy Storchaka2015-04-211-0/+2
* | | do not call into python api if an exception is set (#24022)Benjamin Peterson2015-04-211-0/+2
* | | Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge.Guido van Rossum2015-04-201-0/+4
* | | Issue #23908: os functions now reject paths with embedded null characterSerhiy Storchaka2015-04-201-0/+3
* | | Issue #23728: binascii.crc_hqx() could return an integer outside of the rangeSerhiy Storchaka2015-04-201-0/+3
* | | Issue #23998: PyImport_ReInitLock() now checks for lock allocation errorChristian Heimes2015-04-191-0/+5
|\ \ \ | |/ /
| * | Issue #23998: PyImport_ReInitLock() now checks for lock allocation errorChristian Heimes2015-04-191-0/+5
* | | Issue #23811: Add missing newline to the PyCompileError error message.Berker Peksag2015-04-141-0/+3
* | | Reword NEWS item a bitAndrew Kuchling2015-04-141-2/+2
* | | #17898: reset k and v so that the loop doesn't use an old valueAndrew Kuchling2015-04-131-0/+2
* | | Issue #23310: Fix MagicMock's initializer to work with __methods__.Ɓukasz Langa2015-04-141-0/+3
* | | Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-1/+1
* | | Issue #22982: Improve BOM handling when seeking to multiple positions of a wr...Antoine Pitrou2015-04-131-0/+3
* | | Issue #23309: Avoid a deadlock at shutdown if a daemon thread is abortedAntoine Pitrou2015-04-131-0/+5
* | | Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-0/+4
* | | Issue #23686: Update Windows build to use OpenSSL 1.0.2a.Zachary Ware2015-04-081-1/+2
* | | Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ...Berker Peksag2015-04-081-0/+3
* | | Issue #23881: urllib.request.ftpwrapper constructor now closes the socket ifVictor Stinner2015-04-071-0/+3
* | | Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka2015-04-041-0/+4
* | | Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-0/+3
* | | Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-0/+3
* | | Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store theVictor Stinner2015-04-021-0/+3
* | | Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-0/+2
* | | Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-021-0/+3
* | | Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-011-0/+3
* | | Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-0/+3
* | | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-311-0/+4
* | | #23745: handle duplicate MIME parameter names in new parser.R David Murray2015-03-301-0/+3
* | | Issue #22390: test.regrtest now emits a warning if temporary files orSerhiy Storchaka2015-03-291-0/+3
* | | Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorageDonald Stufft2015-03-291-0/+3
* | | #23792: Ignore KeyboardInterrupt when the pydoc pager is active.R David Murray2015-03-291-0/+4
* | | Issue #23803: Fixed str.partition() and str.rpartition() when a separatorSerhiy Storchaka2015-03-291-0/+3
* | | Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-0/+2
* | | Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-0/+3
* | | Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-241-0/+4
* | | Issue #23583: Added tests for standard IO streams in IDLE.Serhiy Storchaka2015-03-241-0/+5
* | | Issue #21560: An attempt to write a data of wrong type no longer causeSerhiy Storchaka2015-03-231-0/+3
* | | #23647: Increase imaplib's MAXLINE to accommodate modern mailbox sizes.R David Murray2015-03-221-0/+2
* | | #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.R David Murray2015-03-221-0/+4
* | | Issue #22289: Prevent test_urllib2net failures due to ftp connection timeout.Ned Deily2015-03-221-0/+2
* | | Issue #22351: The nntplib.NNTP constructor no longer leaves the connectionSerhiy Storchaka2015-03-211-0/+4
* | | Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a.Ned Deily2015-03-191-1/+1