Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv17340
Modified Files:
linkie.py
Log Message:
replaced Linkie.__iadd__ by Linkie.__ior__
Index: linkie.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/linkie.py,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- linkie.py 27 Apr 2003 13:32:45 -0000 1.46
+++ linkie.py 27 Apr 2003 15:14:31 -0000 1.47
@@ -117,7 +117,7 @@
if symbol[0] in '&%': value += this._origin
this._symbols.append((symbol, value))
return value
- def __iadd__ (this, symbol):
+ def __ior__ (this, symbol):
this.place_symbol(symbol)
def align (this, boundary):
"""align(boundary)
|