From: laike9m Date: Fri, 3 Apr 2020 08:00:28 +0000 (-0700) Subject: bpo-40122: Updated documentation for dis.findlabels() (GH-19274) X-Git-Tag: v3.9.0a6~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b74468e233a5137ff518e61eff65ca2d8833e38a;p=thirdparty%2FPython%2Fcpython.git bpo-40122: Updated documentation for dis.findlabels() (GH-19274) --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 2e1cdeda953a..96574a098696 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.