summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-07-13 02:34:43 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2013-07-13 02:34:43 -0400
commit4f133e2e98930463219f363a60824f989e256fbb (patch)
tree4648e1a737e89162da452f4f10fba6a46e9ba3f2 /Misc
parent037f65841c85333045fec16a275558630afdcea5 (diff)
downloadcpython-git-4f133e2e98930463219f363a60824f989e256fbb.tar.gz
Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch by
Phil Webster. With that available, modify RstripExtension.py to stop deleting null slices, which caused a file to be marked as changed when it was not.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 087db243ce..b568eec64f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1303,6 +1303,7 @@ Aaron Watters
Henrik Weber
Corran Webster
Glyn Webster
+Phil Webster
Stefan Wehr
Zack Weinberg
Bob Weiner
diff --git a/Misc/NEWS b/Misc/NEWS
index 65e60f4b78..4f90cae3a3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -160,6 +160,10 @@ C API
IDLE
----
+- 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.
@@ -176,6 +180,7 @@ IDLE
- 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.