summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-04-02 14:09:49 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-04-02 14:09:49 (GMT)
commit51c6b216cbead1e53f77eb501c85270546cde2d5 (patch)
tree697e2252a5742fbb7652ef2df0acfa5500a184bd /Misc
parentdc362b0b96dc7899944cfc8aea09819d7358549a (diff)
downloadcpython-51c6b216cbead1e53f77eb501c85270546cde2d5.zip
cpython-51c6b216cbead1e53f77eb501c85270546cde2d5.tar.gz
cpython-51c6b216cbead1e53f77eb501c85270546cde2d5.tar.bz2
Merged revisions 71046 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71046 | r.david.murray | 2009-04-02 10:05:35 -0400 (Thu, 02 Apr 2009) | 4 lines Add missing iteritems() call to the for loop in mailbox.MH.get_message(). Fixes issue2625. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS29
1 files changed, 29 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5691fd5..1b13985 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -92,6 +92,35 @@ Core and Builtins
Library
-------
+- Issue 2625: added missing iteritems() call to the for loop in
+ mailbox.MH.get_message().
+
+- Issue 5585: Add the ability to call an initializer to mulitiprocessing.manager
+ so that users can install custonm handlers/etc.
+
+- Issue 3551: Patch multiprocessing to raise a proper exception if the size of the
+ object when writefile is called causes a ERROR_NO_SYSTEM_RESOURCES. Added docs
+ to note the limitation
+
+- unittest.assertNotEqual() now uses the inequality operator (!=) instead
+ of the equality operator.
+
+- Issue #5663: better failure messages for unittest asserts. Default assertTrue
+ and assertFalse messages are now useful. TestCase has a longMessage attribute.
+ This defaults to False, but if set to True useful error messages are shown in
+ addition to explicit messages passed to assert methods.
+
+- Issue #3110: Add additional protect around SEM_VALUE_MAX for multiprocessing
+
+- In Pdb, prevent the reassignment of __builtin__._ by sys.displayhook on
+ printing out values.
+
+- Issue #4572: added SEEK_* symbolic constants to io module.
+
+- Issue #1665206 (partially): Move imports in cgitb to the top of the module
+ instead of performing them in functions. Helps prevent import deadlocking in
+ threads.
+
- Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.
- Issue #5619: Multiprocessing children disobey the debug flag and causes