Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv6769
Modified Files:
tran.py
Log Message:
wrote trivial Stackable.contained_registers
Index: tran.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/tran.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- tran.py 16 Apr 2003 13:32:07 -0000 1.19
+++ tran.py 16 Apr 2003 20:06:36 -0000 1.20
@@ -19,7 +19,9 @@
import sys
class Token: pass
-class Stackable: pass
+class Stackable:
+ def contained_registers (this):
+ return ()
class Unique:
def __init__ (this, name):
|