summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorTal Einat <taleinat+github@gmail.com>2018-10-24 20:32:21 +0300
committerBenjamin Peterson <benjamin@python.org>2018-10-24 10:32:21 -0700
commita1f45ec73f0486b187633e7ebc0a4f559d29d7d9 (patch)
tree4e4f64fb43ea03effd1a149bdd4a97691738053c /Misc
parent56a4a3aa555b3abc756cf837eddac4c0bf545db7 (diff)
downloadcpython-git-a1f45ec73f0486b187633e7ebc0a4f559d29d7d9.tar.gz
bpo-33899: Revert tokenize module adding an implicit final NEWLINE (GH-10072)
This reverts commit 7829bba.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-06-24-01-57-14.bpo-33899.IaOcAr.rst3
1 files changed, 0 insertions, 3 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-24-01-57-14.bpo-33899.IaOcAr.rst b/Misc/NEWS.d/next/Library/2018-06-24-01-57-14.bpo-33899.IaOcAr.rst
deleted file mode 100644
index 21c9095993..0000000000
--- a/Misc/NEWS.d/next/Library/2018-06-24-01-57-14.bpo-33899.IaOcAr.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Tokenize module now implicitly emits a NEWLINE when provided with input that
-does not have a trailing new line. This behavior now matches what the C
-tokenizer does internally. Contributed by Ammar Askar.