summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-01-19 12:32:27 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-01-19 12:32:27 (GMT)
commit2b1b195d396ee92260425b17ee5d17b7f4525485 (patch)
treec008972e73aaf7c611c893f7ce605fdcc911a549 /Misc
parent96f2184de6f48acc44c69f9ff0d80410e93b904a (diff)
downloadcpython-2b1b195d396ee92260425b17ee5d17b7f4525485.zip
cpython-2b1b195d396ee92260425b17ee5d17b7f4525485.tar.gz
cpython-2b1b195d396ee92260425b17ee5d17b7f4525485.tar.bz2
Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a
just-created (and empty) instance. Added tests for this. Thanks Jonathan Share.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cc74e16..35d9634 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -367,6 +367,9 @@ Core and builtins
Library
-------
+- #1822: MIMEMultipart.is_multipart() behaves correctly for a just-created
+ (and empty) instance. Thanks Jonathan Share.
+
- #1861: Added an attribute to the sched module which returns an ordered
list of upcoming events (displayed as named tuples).