Skip to content

Commit

Permalink
[3.7] bpo-33899: Mention tokenize behavior change in What's New (GH-1…
Browse files Browse the repository at this point in the history
  • Loading branch information
taleinat authored and miss-islington committed Oct 24, 2018
1 parent 861f61b commit b4c9874
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Doc/whatsnew/3.6.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2414,3 +2414,11 @@ Notable changes in Python 3.6.5
The :func:`locale.localeconv` function now sets temporarily the ``LC_CTYPE``
locale to the ``LC_NUMERIC`` locale in some cases.
(Contributed by Victor Stinner in :issue:`31900`.)

Notable changes in Python 3.6.7
===============================

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`.)
5 changes: 5 additions & 0 deletions Doc/whatsnew/3.7.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2523,3 +2523,8 @@ In 3.7.1 the C API for Context Variables

:mod:`xml.dom.minidom` and :mod:`xml.sax` modules no longer process
external entities by default. See also :issue:`17239`.

In 3.7.1 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`.)

0 comments on commit b4c9874

Please sign in to comment.