summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-04 05:19:36 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-04 05:19:36 (GMT)
commit7dbe6dd96393d713e405f80fa0eb8f9471c8276a (patch)
tree66b380180b5f4a2b20e6c7aeffde677023ad5411
parent04cbe08be414ec718ecb39ee124ee41eb398726d (diff)
parente25511a566d27961748f3c62015ebc0da4f05ecc (diff)
downloadcpython-7dbe6dd96393d713e405f80fa0eb8f9471c8276a.zip
cpython-7dbe6dd96393d713e405f80fa0eb8f9471c8276a.tar.gz
cpython-7dbe6dd96393d713e405f80fa0eb8f9471c8276a.tar.bz2
merge 3.5
-rw-r--r--Lib/idlelib/NEWS.txt19
-rw-r--r--Misc/NEWS21
2 files changed, 39 insertions, 1 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index 535653d..2df89ec 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -2,6 +2,25 @@ What's New in IDLE 3.6.0a1?
===========================
*Release date: 2017?*
+- Issue #24820: IDLE now has an 'IDLE Dark' built-in text color theme.
+ It is more or less IDLE Classic inverted, with a cobalt blue background.
+ Strings, comments, keywords, ... are still green, red, orange, ... .
+ Selecting it displays the following warning and solution.
+ "IDLE Dark is new in October, 2015. Trying to run earlier versions
+ of IDLE with it selected will disable colorizing, or worse.
+ If you might ever run an earlier release of IDLE, then before
+ exiting this version, either switch to another theme or hit the
+ 'Save as New Custom Theme' button. The latter requires a new name,
+ such as 'Custom Dark', but the custom theme will work with any IDLE
+ release, and can be modified."
+
+- Issue #25224: README.txt is now an idlelib index for IDLE developers and
+ curious users. The previous user content is now in the IDLE doc and is
+ redundant. IDLE now means 'Integrated Development and Learning Environment'.
+
+- Issue #24820: Users can now set breakpoint colors in
+ Settings -> Custom Highlighting. Original patch by Mark Roseman.
+
- Issue #24972: Inactive selection background now matches active selection
background, as configured by user, on all systems. Found items are now
always highlighted on Windows. Initial patch by Mark Roseman.
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d37870..d809377 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -119,6 +119,25 @@ Library
IDLE
----
+- Issue #24820: IDLE now has an 'IDLE Dark' built-in text color theme.
+ It is more or less IDLE Classic inverted, with a cobalt blue background.
+ Strings, comments, keywords, ... are still green, red, orange, ... .
+ Selecting it displays the following warning and solution.
+ "IDLE Dark is new in October, 2015. Trying to run earlier versions
+ of IDLE with it selected will disable colorizing, or worse.
+ If you might ever run an earlier release of IDLE, then before
+ exiting this version, either switch to another theme or hit the
+ 'Save as New Custom Theme' button. The latter requires a new name,
+ such as 'Custom Dark', but the custom theme will work with any IDLE
+ release, and can be modified."
+
+- Issue #25224: README.txt is now an idlelib index for IDLE developers and
+ curious users. The previous user content is now in the IDLE doc and is
+ redundant. IDLE now means 'Integrated Development and Learning Environment'.
+
+- Issue #24820: Users can now set breakpoint colors in
+ Settings -> Custom Highlighting. Original patch by Mark Roseman.
+
- Issue #24972: Inactive selection background now matches active selection
background, as configured by user, on all systems. Found items are now
always highlighted on Windows. Initial patch by Mark Roseman.
@@ -556,7 +575,7 @@ Library
- Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
- Issue #24791: Fix grammar regression for call syntax: 'g(\*a or b)'.
-p
+
IDLE
----