summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-03 15:38:43 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-03 15:38:43 (GMT)
commit2cc3b4ba9ffa658784da03f14a0a068e2c61d1b3 (patch)
tree66423060d67ba1f6ad182450edb895cc29ca28f1 /Misc
parent4552e3f95c3382a4665cb8adab343521f8898331 (diff)
downloadcpython-2cc3b4ba9ffa658784da03f14a0a068e2c61d1b3.zip
cpython-2cc3b4ba9ffa658784da03f14a0a068e2c61d1b3.tar.gz
cpython-2cc3b4ba9ffa658784da03f14a0a068e2c61d1b3.tar.bz2
#16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a070be8..1095733 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -71,6 +71,7 @@ Des Barry
Ulf Bartelt
Don Bashford
Nick Bastin
+Ned Batchelder
Jeff Bauer
Mike Bayer
Michael R Bax
diff --git a/Misc/NEWS b/Misc/NEWS
index 3075225..3ee301f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -143,6 +143,9 @@ Core and Builtins
Library
-------
+- Issue #16152: fix tokenize to ignore whitespace at the end of the code when
+ no newline is found. Patch by Ned Batchelder.
+
- Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu
Patch by Todd Rovito.