]> granicus.if.org Git - python/commitdiff
Fix code being interpreted as a target.
authorGeorg Brandl <georg@python.org>
Sat, 20 Oct 2007 13:22:53 +0000 (13:22 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 20 Oct 2007 13:22:53 +0000 (13:22 +0000)
Doc/library/dis.rst

index 9b4b7dccf619263503bbb0b7f1bc262826414f47..e8e5cf38aa65fb379f586a358f4a100c3b5ce4b8 100644 (file)
@@ -523,9 +523,9 @@ Miscellaneous opcodes.
    context manager's :meth:`__exit__` bound method.  Below that are 1--3 values
    indicating how/why the finally clause was entered:
 
-   * SECOND = None
-   * (SECOND, THIRD) = (WHY_{RETURN,CONTINUE}), retval
-   * SECOND = WHY_\*; no retval below it
+   * SECOND = ``None``
+   * (SECOND, THIRD) = (``WHY_{RETURN,CONTINUE}``), retval
+   * SECOND = ``WHY_*``; no retval below it
    * (SECOND, THIRD, FOURTH) = exc_info()
 
    In the last case, ``TOS(SECOND, THIRD, FOURTH)`` is called, otherwise
@@ -535,6 +535,8 @@ Miscellaneous opcodes.
    returns a 'true' value, this information is "zapped", to prevent ``END_FINALLY``
    from re-raising the exception.  (But non-local gotos should still be resumed.)
 
+   .. XXX explain the WHY stuff!
+
 
 All of the following opcodes expect arguments.  An argument is two bytes, with
 the more significant byte last.