Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv24645
Modified Files:
tran.py
Log Message:
resolved inheritance conflict wrt Class_Marker
Index: tran.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/tran.py,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -d -r1.121 -r1.122
--- tran.py 19 May 2003 08:35:18 -0000 1.121
+++ tran.py 21 May 2003 10:44:55 -0000 1.122
@@ -194,7 +194,7 @@
def contained_registers (this):
return this,
-class Class_Marker (object, Stackable):
+class Class_Marker (Stackable):
def __init__ (this, id):
this.id = id
def __str__ (this):
|