Fix ReST typo in NEWS

This commit is contained in:
Kodi Arfer 2018-02-06 17:13:11 -08:00
parent cfcae05b5e
commit b1ce56a4bb
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ Language Changes
"reader macros", which were never true reader macros, are now called
"sharp macros"
* `try` now enforces the usual Python order for its elements (`else` must
follow all `except`s, and `finally` must come last). This is only a
follow all `except`\s, and `finally` must come last). This is only a
syntactic change; the elements were already run in Python order even when
defined out of order.
* `try` now requires an `except` or `finally` clause, as in Python