Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv23237
Modified Files:
tran.py
Log Message:
dropped Register.child_generator
Index: tran.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/tran.py,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- tran.py 17 May 2003 05:37:51 -0000 1.78
+++ tran.py 17 May 2003 05:38:46 -0000 1.79
@@ -158,11 +158,6 @@
def parent (this):
if len(this): return apply(Register, this[:-1])
else: return None
- def child_generator (this):
- i = 0
- while 1:
- yield apply(Register, this + (i,))
- i += 1
def __repr__ (this):
return 'Register' + tuple.__repr__(this)
def __str__ (this):
|