]> granicus.if.org Git - python/commitdiff
Merge from 3.2
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Sat, 31 Mar 2012 11:20:19 +0000 (14:20 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Sat, 31 Mar 2012 11:20:19 +0000 (14:20 +0300)
1  2 
Lib/idlelib/NEWS.txt
Misc/NEWS

index 8c5cce063b96132c1692bb1ed4ba8abfdae5e8eb,a6b06b40e0a71e7e89a7422574cc57241b651c62..d50abd44d29b69782ccc2c83f8a5728e4b57b6eb
@@@ -1,10 -1,10 +1,12 @@@
 -What's New in IDLE 3.2.3?
 +What's New in IDLE 3.3?
  =========================
  
- - Issue #14409: IDLE doesn't not execute commands from shell,
-   error with default keybinding for Return. (Patch by Roger Serwy)
 +- IDLE can be launched as `python -m idlelib`
 +
+ - Issue #14409: IDLE now properly executes commands in the Shell window
+   when it cannot read the normal config files on startup and
+   has to use the built-in default key bindings.
+   There was previously a bug in one of the defaults.
  
  - Issue #3573: IDLE hangs when passing invalid command line args
    (directory(ies) instead of file(s)).
diff --cc Misc/NEWS
index 596cacc10112ba6163cc9103db4ffa0ef6a9131f,d084fac9b80d1af9524d65e137aff2cf97fa5329..2deb75133e0fc3c282d9b9edb4cbbf2dca745668
+++ b/Misc/NEWS
@@@ -34,22 -31,11 +34,24 @@@ Core and Builtin
  Library
  -------
  
- - Issue #14409: IDLE doesn't not execute commands from shell,
-   error with default keybinding for Return. (Patch by Roger Serwy)
+ - Issue #14409: IDLE now properly executes commands in the Shell window
+   when it cannot read the normal config files on startup and
+   has to use the built-in default key bindings.
+   There was previously a bug in one of the defaults.
  
 +- Issue #14416: syslog now defines the LOG_ODELAY and LOG_AUTHPRIV constants
 +  if they are defined in <syslog.h>.
 +
 +- IDLE can be launched as python -m idlelib
 +
 +- Issue #14295: Add unittest.mock
 +
 +- Issue #7652: Add --with-system-libmpdec option to configure for linking
 +  the _decimal module against an installed libmpdec.
 +
 +- Issue #14380: MIMEText now defaults to utf-8 when passed non-ASCII unicode
 +  with no charset specified.
 +
  - Issue #10340: asyncore - properly handle EINVAL in dispatcher constructor on
    OSX; avoid to call handle_connect in case of a disconnected socket which
    was not meant to connect.