diff options
author | laike9m <laike9m@users.noreply.github.com> | 2020-04-03 08:00:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 08:00:28 (GMT) |
commit | b74468e233a5137ff518e61eff65ca2d8833e38a (patch) | |
tree | ae885379c5d66d1fb55af33a98928f68b91bd758 /Doc/library/dis.rst | |
parent | 1767a0490f80c7b90d81051db24ef2b82cd9434f (diff) | |
download | cpython-b74468e233a5137ff518e61eff65ca2d8833e38a.zip cpython-b74468e233a5137ff518e61eff65ca2d8833e38a.tar.gz cpython-b74468e233a5137ff518e61eff65ca2d8833e38a.tar.bz2 |
bpo-40122: Updated documentation for dis.findlabels() (GH-19274)
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r-- | Doc/library/dis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 2e1cded..96574a0 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -244,7 +244,7 @@ operation is being performed, so the intermediate analysis object isn't useful: .. function:: findlabels(code) - Detect all offsets in the code object *code* which are jump targets, and + Detect all offsets in the raw compiled bytecode string *code* which are jump targets, and return a list of these offsets. |