diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-12 08:00:01 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-12 08:00:01 +0300 |
commit | 34b74fffb32493b49b262ed9122d798d373477b7 (patch) | |
tree | 77e1091ee9207858c9d35ee3d6e8efa9a23e7503 | |
parent | 1d7feab78a5a6ad98930ca44a797fcd05ff69794 (diff) | |
download | cpython-git-34b74fffb32493b49b262ed9122d798d373477b7.tar.gz |
Add missing versionadded directives
-rw-r--r-- | Doc/library/dis.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 0a64d4603b..3c6c0fd020 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -614,6 +614,8 @@ iterations of the loop. or module body contains :term:`variable annotations <variable annotation>` statically. + .. versionadded:: 3.6 + .. opcode:: IMPORT_STAR Loads all symbols not starting with ``'_'`` directly from the module TOS to @@ -900,6 +902,8 @@ All of the following opcodes use their arguments. Stores TOS as ``locals()['__annotations__'][co_names[namei]] = TOS``. + .. versionadded:: 3.6 + .. opcode:: LOAD_CLOSURE (i) |