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 #14331: Use significantly less stack space when importing modules by
- allocating path buffers on the heap instead of the stack.
+- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they
+ are passed arguments and their complementary method is not overridden.
+
+- Give the ast.AST class a __dict__.
- Issue #14334: Prevent in a segfault in type.__getattribute__ when it was not
passed strings.
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.
+
- Issue #13694: asynchronous connect in asyncore.dispatcher does not set addr
attribute.