summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-11-08 20:13:07 (GMT)
committerYury Selivanov <yury@magic.io>2016-11-08 20:13:07 (GMT)
commit2edd8a1e2cd22f8ba46e108ff213bec8c5f86459 (patch)
tree67a74827d0310416aad0ae57fbbdbbe5e3496b9f /Misc/NEWS
parent1c9bd1d8ec9a022f4f222eccbddac3b4174c2ab2 (diff)
downloadcpython-2edd8a1e2cd22f8ba46e108ff213bec8c5f86459.zip
cpython-2edd8a1e2cd22f8ba46e108ff213bec8c5f86459.tar.gz
cpython-2edd8a1e2cd22f8ba46e108ff213bec8c5f86459.tar.bz2
Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning.
As it was agreed in the issue, __aiter__ returning an awaitable should result in PendingDeprecationWarning in 3.5 and in DeprecationWarning in 3.6.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b4a0243..7a4fa3a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,11 @@ Core and Builtins
- Issue #28583: PyDict_SetDefault didn't combine split table when needed.
Patch by Xiang Zhang.
+- Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning.
+ As it was agreed in the issue, __aiter__ returning an awaitable
+ should result in PendingDeprecationWarning in 3.5 and in
+ DeprecationWarning in 3.6.
+
Library
-------