diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-07-19 11:58:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-19 11:58:44 (GMT) |
commit | d2be44230eaade5c367af6ec9df649502b574dac (patch) | |
tree | 3c7e8aef7c585a1350f35ec003475addaaec0b5c | |
parent | fbd24068c2c82004297f3d267509f878e70a8730 (diff) | |
download | cpython-d2be44230eaade5c367af6ec9df649502b574dac.zip cpython-d2be44230eaade5c367af6ec9df649502b574dac.tar.gz cpython-d2be44230eaade5c367af6ec9df649502b574dac.tar.bz2 |
Remove out of date reference to YIELD_FROM from docs. (GH-94966) (GH-94975)
(cherry picked from commit c41d4d09172bf28ba9e5760498bd494a3521a123)
Co-authored-by: Mark Shannon <mark@hotpy.org>
Co-authored-by: Mark Shannon <mark@hotpy.org>
-rw-r--r-- | Doc/library/dis.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 6f882b6..c303ab9 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -588,12 +588,6 @@ iterations of the loop. Pops TOS and yields it from a :term:`generator`. -.. opcode:: YIELD_FROM - - Pops TOS and delegates to it as a subiterator from a :term:`generator`. - - .. versionadded:: 3.3 - .. opcode:: SETUP_ANNOTATIONS |