diff options
author | Georg Brandl <georg@python.org> | 2014-02-10 21:04:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-02-10 21:04:20 (GMT) |
commit | 8f9c20b8ff6d00a32ff3f4018969e80e237884dc (patch) | |
tree | 9e5670bfca7ba58b303de5bd470f5088afe419f2 /Lib/idlelib | |
parent | 72e7761301febe026536e7a2a444269698dcf156 (diff) | |
parent | a37fcb28e6bcfd7705f219c12834b4d23a9ed499 (diff) | |
download | cpython-8f9c20b8ff6d00a32ff3f4018969e80e237884dc.zip cpython-8f9c20b8ff6d00a32ff3f4018969e80e237884dc.tar.gz cpython-8f9c20b8ff6d00a32ff3f4018969e80e237884dc.tar.bz2 |
merge with 3.3.4 releasing repo
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/NEWS.txt | 62 | ||||
-rw-r--r-- | Lib/idlelib/idlever.py | 2 |
2 files changed, 63 insertions, 1 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 5450701..2204d90 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,65 @@ +What's New in IDLE 3.3.4? +========================= + +- Issue #17390: Add Python version to Idle editor window title bar. + Original patches by Edmond Burnett and Kent Johnson. + +- Issue #18960: IDLE now ignores the source encoding declaration on the second + line if the first line contains anything except a comment. + +- Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. + +- Issue #19481: print() of string subclass instance in IDLE no longer hangs. + +- Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial + shell window is present. + + +What's New in IDLE 3.3.3? +========================= + +- Issue #18873: IDLE now detects Python source code encoding only in comment + lines. + +- Issue #18988: The "Tab" key now works when a word is already autocompleted. + +- Issue #18489: Add tests for SearchEngine. Original patch by Phil Webster. + +- Issue #18429: Format / Format Paragraph, now works when comment blocks + are selected. As with text blocks, this works best when the selection + only includes complete lines. + +- Issue #18226: Add docstrings and unittests for FormatParagraph.py. + Original patches by Todd Rovito and Phil Webster. + +- Issue #18279: Format - Strip trailing whitespace no longer marks a file as + changed when it has not been changed. This fix followed the addition of a + test file originally written by Phil Webster (the issue's main goal). + +- Issue #7136: In the Idle File menu, "New Window" is renamed "New File". + Patch by Tal Einat, Roget Serwy, and Todd Rovito. + +- Remove dead imports of imp. + +- Issue #18196: Avoid displaying spurious SystemExit tracebacks. + +- Issue #5492: Avoid traceback when exiting IDLE caused by a race condition. + +- Issue #17511: Keep IDLE find dialog open after clicking "Find Next". + Original patch by Sarah K. + +- Issue #18055: Move IDLE off of imp and on to importlib. + +- Issue #15392: Create a unittest framework for IDLE. + Initial patch by Rajagopalasarma Jayakrishnan. + See Lib/idlelib/idle_test/README.txt for how to run Idle tests. + +- Issue #14146: Highlight source line while debugging on Windows. + +- Issue #17532: Always include Options menu for IDLE on OS X. + Patch by Guilherme Simões. + + What's New in IDLE 3.3.2? ========================= diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py index 60f1d32..e9e88ef 100644 --- a/Lib/idlelib/idlever.py +++ b/Lib/idlelib/idlever.py @@ -1 +1 @@ -IDLE_VERSION = "3.3.3" +IDLE_VERSION = "3.3.4" |