diff options
author | Yury Selivanov <yury@magic.io> | 2017-10-06 14:18:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-06 14:18:10 (GMT) |
commit | 02e82a0596121e7b6fcd1142b60c744e8e254d41 (patch) | |
tree | cce897774a179ac0857e0a2e39a1273acb695953 /Doc/library | |
parent | a51b90a31399a8826e590da8e327bd65dd29e5a4 (diff) | |
download | cpython-02e82a0596121e7b6fcd1142b60c744e8e254d41.zip cpython-02e82a0596121e7b6fcd1142b60c744e8e254d41.tar.gz cpython-02e82a0596121e7b6fcd1142b60c744e8e254d41.tar.bz2 |
bpo-31709: Update importlib magic (#3906)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dis.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 7b7c84d..4d01103 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -558,8 +558,11 @@ the original TOS1. .. opcode:: GET_AITER - Implements ``TOS = get_awaitable(TOS.__aiter__())``. See ``GET_AWAITABLE`` - for details about ``get_awaitable`` + Implements ``TOS = TOS.__aiter__()``. + + .. versionchanged:: 3.7 + Returning awaitable objects from ``__aiter__`` is no longer + supported. .. opcode:: GET_ANEXT |