summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2012-07-31 20:03:25 (GMT)
committerBarry Warsaw <barry@python.org>2012-07-31 20:03:25 (GMT)
commit9a5af1288deb62d975c044a45711cc179b5a2ad1 (patch)
tree767b3a8dc1a144e66cc1e476ddd50a0a8e5cfb92 /Misc
parentdadebab42c87e29342de67501a6b280e547fb633 (diff)
parent233f6845b3f3498d800b429c4e8d84abcb5726b7 (diff)
downloadcpython-9a5af1288deb62d975c044a45711cc179b5a2ad1.zip
cpython-9a5af1288deb62d975c044a45711cc179b5a2ad1.tar.gz
cpython-9a5af1288deb62d975c044a45711cc179b5a2ad1.tar.bz2
merge
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 22d21b7..719eb8a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.3.0 Beta 2?
Core and Builtins
-----------------
+- Issue #15508: Fix the docstring for __import__ to have the proper default
+ value of 0 for 'level' and to not mention negative levels since they are
+ not supported.
+
- Issue #15425: Eliminated traceback noise from more situations involving
importlib
@@ -342,6 +346,9 @@ Core and Builtins
Library
-------
+- Issue #9803: Don't close IDLE on saving if breakpoint is open.
+ Patch by Roger Serwy.
+
- Issue #12288: Consider '0' and '0.0' as valid initialvalue
for tkinter SimpleDialog.