summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-03-21 11:31:12 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-03-21 11:31:12 (GMT)
commit206d2a43a32953145b9d28f7eb8b34aaba1037e4 (patch)
tree76df3d9961c3956befdccd1169ae48a6bab7f23f /Misc
parent6b6e437626e94ad5ef3233ea9129c48957f1a41b (diff)
parent0f71f4415603d36e0fabec812f93dc80547466b3 (diff)
downloadcpython-206d2a43a32953145b9d28f7eb8b34aaba1037e4.zip
cpython-206d2a43a32953145b9d28f7eb8b34aaba1037e4.tar.gz
cpython-206d2a43a32953145b9d28f7eb8b34aaba1037e4.tar.bz2
Merge from 3.2 for issue #3573, fix Misc/NEWS as Ned Deily guess.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 3 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fe37f10..9a6cc44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,11 +10,6 @@ What's New in Python 3.3.0 Alpha 2?
Core and Builtins
-----------------
-- Issue #3573: IDLE hangs when passing invalid command line args
- (directory(ies) instead of file(s))
-
- Thanks to Guilherme Polo for patch and to Roger Serwy for review.
-
- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they
are passed arguments and their complementary method is not overridden.
@@ -35,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #3573: IDLE hangs when passing invalid command line args
+ (directory(ies) instead of file(s)) (Patch by Guilherme Polo)
+
- Issue #14269: SMTPD now conforms to the RFC and requires a HELO command
before MAIL, RCPT, or DATA.