]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.6] bpo-33899: Mention tokenize behavior change in What's New (GH-10073) (GH-10075)
authorTal Einat <taleinat+github@gmail.com>
Wed, 24 Oct 2018 07:32:37 +0000 (10:32 +0300)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 24 Oct 2018 07:32:37 +0000 (00:32 -0700)
(cherry picked from commit dfba1f67e7f1381ceb7cec8fbcfa37337620a9b0)

https://bugs.python.org/issue33899

Doc/whatsnew/3.6.rst

index 96a8831cd6fff15b71110f737d7c9e6f00f50968..009584428fc1b83094da29404713a30393326842 100644 (file)
@@ -2433,3 +2433,8 @@ Notable changes in Python 3.6.7
 
 :mod:`xml.dom.minidom` and mod:`xml.sax` modules no longer process
 external entities by default. See also :issue:`17239`.
+
+In 3.6.7 the :mod:`tokenize` module now implicitly emits a ``NEWLINE`` token
+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 in :issue:`33899`.)