We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11945f2 commit a27e322Copy full SHA for a27e322
Doc/library/dis.rst
@@ -24,6 +24,16 @@ interpreter.
24
Use 2 bytes for each instruction. Previously the number of bytes varied
25
by instruction.
26
27
+ .. versionchanged:: 3.10
28
+ The argument of jump, exception handling and loop instructions is now
29
+ the instruction offset rather than the byte offset.
30
+
31
+ .. versionchanged:: 3.11
32
+ Some instructions are accompanied by one or more inline cache entries,
33
+ which take the form of :opcode:`CACHE` instructions. These instructions
34
+ are hidden by default, but can be shown by passing ``show_caches=True`` to
35
+ any :mod:`dis` utility.
36
37
38
Example: Given the function :func:`myfunc`::
39
0 commit comments