diff options
author | Guido van Rossum <guido@dropbox.com> | 2016-09-09 16:29:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2016-09-09 16:29:42 (GMT) |
commit | 95e502e7a664c588bcd9d895af285a32ce8246fe (patch) | |
tree | 2ff44ec96117ea1d0598c060993e6e60a1a058ba | |
parent | 7bcf7931fc5b2f1593fda052eec2679c49997877 (diff) | |
download | cpython-95e502e7a664c588bcd9d895af285a32ce8246fe.zip cpython-95e502e7a664c588bcd9d895af285a32ce8246fe.tar.gz cpython-95e502e7a664c588bcd9d895af285a32ce8246fe.tar.bz2 |
Move news items for PEP 526 and 525 to the top of their section.
(News items should be ordered newest-first within their section.)
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -10,6 +10,11 @@ What's New in Python 3.6.0 beta 1 Core and Builtins ----------------- +- Issue #28003: Implement PEP 525 -- Asynchronous Generators. + +- Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. + Patch by Ivan Levkivskyi. + - Issue #26058: Add a new private version to the builtin dict type, incremented at each dictionary creation and at each dictionary change. Implementation of the PEP 509. @@ -100,10 +105,6 @@ Core and Builtins In a brand new thread, raise a RuntimeError since there is no active exception to reraise. Patch written by Xiang Zhang. -- Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. - Patch by Ivan Levkivskyi. - -- Issue #28003: Implement PEP 525 -- Asynchronous Generators. Library |