[pypy-svn] r12356 - pypy/dist/pypy/documentation

arigo at codespeak.net arigo at codespeak.net
Mon May 16 15:10:30 CEST 2005


Author: arigo
Date: Mon May 16 15:10:30 2005
New Revision: 12356

Modified:
   pypy/dist/pypy/documentation/objspace.txt
Log:
issue24 resolved

Updated the flowgraph model to the latest exception-Variable-over-links
mechanism.


Modified: pypy/dist/pypy/documentation/objspace.txt
==============================================================================
--- pypy/dist/pypy/documentation/objspace.txt	(original)
+++ pypy/dist/pypy/documentation/objspace.txt	Mon May 16 15:10:30 2005
@@ -298,9 +298,13 @@
     :target:     the target Block to which this Link points to.
     :args:       a list of Variables and Constants, of the same size as the target Block's inputargs, which gives all the values passed into the next block.  (Note that each Variable used in the prevblock may appear zero, one or more times in the ``args`` list.)
     :exitcase:   see above.
+    :last_exception: None or a Variable; see below.
+    :last_exc_value: None or a Variable; see below.
 
     Note that ``args`` uses Variables from the prevblock, which are matched to the target block's ``inputargs`` by position, as in a tuple assignment or function call would do.
 
+    If the link is an exception-catching one, the ``last_exception`` and ``last_exc_value`` are set to two fresh Variables that are considered to be created when the link is entered; at run-time, they will hold the exception class and value, respectively.  These two new variables can only be used in the same link's ``args`` list, to be passed to the next block (as usual, they may actually not appear at all, or appear several times in ``args``).
+
 
 SpaceOperation
     A recorded (or otherwise generated) basic operation.
@@ -327,9 +331,6 @@
     A Constant can occasionally store a mutable Python object.  It represents a static, pre-initialized, read-only version of that object.  The flow graph should not attempt to actually mutate such Constants.
 
 
-XXX talk about implicit exceptions
-
-
 How the FlowObjSpace works
 --------------------------
 



More information about the Pypy-commit mailing list