summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-12-01 22:08:53 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-12-01 22:08:53 (GMT)
commit95df265e3a7a0713fcd8744e7a67ee8b29a17333 (patch)
treef609f3da2e9fc02e38dc70cebb008294f8d6bf78 /Misc
parent407249c62b8e0b44cd13e7c9dec1ad1affae4912 (diff)
parenteecd5c4a007b6f5926063a6b9c695cd4c9d2b2ec (diff)
downloadcpython-95df265e3a7a0713fcd8744e7a67ee8b29a17333.zip
cpython-95df265e3a7a0713fcd8744e7a67ee8b29a17333.tar.gz
cpython-95df265e3a7a0713fcd8744e7a67ee8b29a17333.tar.bz2
Merge with 3.4
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS19
1 files changed, 19 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d21fec..b03af9f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -191,6 +191,8 @@ Core and Builtins
Library
-------
+- Issue #21971: Update turtledemo doc and add module to the index.
+
- Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.
Original patch by Martin Panter.
@@ -1186,6 +1188,23 @@ Tools/Demos
IDLE
----
+- Issue #3068: Add Idle extension configuration dialog to Options menu.
+ Changes are written to HOME/.idlerc/config-extensions.cfg.
+ Original patch by Tal Einat.
+
+- Issue #16233: A module browser (File : Class Browser, Alt+C) requires a
+ editor window with a filename. When Class Browser is requested otherwise,
+ from a shell, output window, or 'Untitled' editor, Idle no longer displays
+ an error box. It now pops up an Open Module box (Alt+M). If a valid name
+ is entered and a module is opened, a corresponding browser is also opened.
+
+- Issue #4832: Save As to type Python files automatically adds .py to the
+ name you enter (even if your system does not display it). Some systems
+ automatically add .txt when type is Text files.
+
+- Issue #21986: Code objects are not normally pickled by the pickle module.
+ To match this, they are no longer pickled when running under Idle.
+
- Issue #17390: Adjust Editor window title; remove 'Python',
move version to end.