summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-09-15 16:50:23 (GMT)
committerYury Selivanov <yury@magic.io>2016-09-15 16:50:23 (GMT)
commit8987c9d219f0efb438f5d707a63d0a0a0f72b3ef (patch)
tree409543083b30dda1c786a619ab9012b0c9e0483f /Misc
parent67752315979e1501b7088273b5a1aecc90b6fe67 (diff)
downloadcpython-8987c9d219f0efb438f5d707a63d0a0a0f72b3ef.zip
cpython-8987c9d219f0efb438f5d707a63d0a0a0f72b3ef.tar.gz
cpython-8987c9d219f0efb438f5d707a63d0a0a0f72b3ef.tar.bz2
Issue #26182: Raise DeprecationWarning for improper use of async/await keywords
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4c23930..4655b5e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,9 @@ Core and Builtins
- Issue #28120: Fix dict.pop() for splitted dictionary when trying to remove a
"pending key" (Not yet inserted in split-table). Patch by Xiang Zhang.
+- Issue #26182: Raise DeprecationWarning when async and await keywords are
+ used as variable/attribute/class/function name.
+
Library
-------