From: Matthias Klose Date: Mon, 6 Apr 2009 20:59:24 +0000 (+0000) Subject: Misc/NEWS: Move all news items checked in after the 3.0.1 release X-Git-Tag: 3.0~255 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eef0573425dbe461ee64063c22cdaabf86714c57;p=thirdparty%2FPython%2Fcpython.git Misc/NEWS: Move all news items checked in after the 3.0.1 release to the 3.0.2 section. --- diff --git a/Misc/NEWS b/Misc/NEWS index 41f5b780f3f1..313bf211e3be 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -30,6 +30,29 @@ Core and Builtins Library ------- +- Issue #1491431: Fixed distutils.filelist.glob_to_re for edge cases. + Initial fix by Wayne Davison. + +- Issue #4792: Prevent a segfault in _tkinter by using the + guaranteed to be safe interp argument given to the PythonCmd in place of + the Tcl interpreter taken from a PythonCmd_ClientData. + +- Issue #5193: Guarantee that tkinter.Text.search returns a string. + +- Issue #5334: array.fromfile() failed to insert values when EOFError was + raised. + +- Issue #5385: Fixed mmap crash after resize failure on windows. + +- Issue #5401: Fixed a performance problem in mimetypes when ``from mimetypes + import guess_extension`` was used. + +- Issue #1733986: Fixed mmap crash in accessing elements of second map object + with same tagname but larger size than first map. (Windows) + +- Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer + overrun. + - Issue 2625: added missing items() call to the for loop in mailbox.MH.get_message(). @@ -187,28 +210,6 @@ Core and Builtins Library ------- -- Issue #1491431: Fixed distutils.filelist.glob_to_re for edge cases. - Initial fix by Wayne Davison. - -- Issue #4792: Prevent a segfault in _tkinter by using the - guaranteed to be safe interp argument given to the PythonCmd in place of - the Tcl interpreter taken from a PythonCmd_ClientData. - -- Issue #5193: Guarantee that tkinter.Text.search returns a string. - -- Issue #5334: array.fromfile() failed to insert values when EOFError was raised. - -- Issue #5385: Fixed mmap crash after resize failure on windows. - -- Issue #5401: Fixed a performance problem in mimetypes when ``from mimetypes - import guess_extension`` was used. - -- Issue #1733986: Fixed mmap crash in accessing elements of second map object - with same tagname but larger size than first map. (Windows) - -- Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer - overrun. - - Issue #4998: The memory saving effect of __slots__ had been lost on Fractions which inherited from numbers.py which did not have __slots__ defined. The numbers hierarchy now has its own __slots__ declarations.