]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40122: Updated documentation for dis.findlabels() (GH-19274)
authorlaike9m <laike9m@users.noreply.github.com>
Fri, 3 Apr 2020 08:00:28 +0000 (01:00 -0700)
committerGitHub <noreply@github.com>
Fri, 3 Apr 2020 08:00:28 +0000 (11:00 +0300)
Doc/library/dis.rst

index 2e1cdeda953a5422e990baaebc1efb0c2f379f8d..96574a098696cadda7052eb5d578cfe7edb0fd24 100644 (file)
@@ -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.