summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorLisa Roach <lisaroach14@gmail.com>2017-06-08 11:43:26 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-06-08 11:43:26 (GMT)
commit64505a1f6c0af4574e17e823b27ffe24eca44df5 (patch)
treed2b40e19b44e4ab50f92440a54facc59038da4b3 /Misc/NEWS
parent6cca5c8459cc439cb050010ffa762a03859d3051 (diff)
downloadcpython-64505a1f6c0af4574e17e823b27ffe24eca44df5.zip
cpython-64505a1f6c0af4574e17e823b27ffe24eca44df5.tar.gz
cpython-64505a1f6c0af4574e17e823b27ffe24eca44df5.tar.bz2
bpo-30486: Allow setting cell value (#1840)
The cell_contents attribute of the cell object is now writable.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS8
1 files changed, 5 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0bc33bb..29c0005 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
+- bpo-30486: Allows setting cell values for __closure__. Patch by Lisa Roach.
+
+- bpo-30537: itertools.islice now accepts integer-like objects (having
+ an __index__ method) as start, stop, and slice arguments
+
- bpo-25324: Tokens needed for parsing in Python moved to C. ``COMMENT``,
``NL`` and ``ENCODING``. This way the tokens and tok_names in the token
module don't get changed when you import the tokenize module.
@@ -128,9 +133,6 @@ Core and Builtins
- bpo-29546: Improve from-import error message with location
-- bpo-30537: itertools.islice now accepts integer-like objects (having
- an __index__ method) as start, stop, and slice arguments
-
- Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].
- Issue #29337: Fixed possible BytesWarning when compare the code objects.