Update NEWS

This commit is contained in:
Kodi Arfer 2018-03-04 16:42:38 -08:00
parent eda0b89f67
commit ca06294c18
1 changed files with 7 additions and 1 deletions

View File

@ -5,7 +5,9 @@ Unreleased
Other Breaking Changes
------------------------------
* `_` and `-` are now equivalent as single-character names
* Mangling rules have been overhauled, such that mangled names
are always legal Python identifiers
* `_` and `-` are now equivalent even as single-character names
* The REPL history variable `_` is now `*1`
@ -13,6 +15,10 @@ Other Breaking Changes
instead of ignoring it. This change increases consistency a bit
and makes accidental unary uses easier to notice.
New Features
------------------------------
* Added `mangle` and `unmangle` as core functions
Bug Fixes
------------------------------
* Fix `(return)` so it works correctly to exit a Python 2 generator