Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv4886
Modified Files:
linkie.py
Log Message:
introduced Linkie.__iadd__
Index: linkie.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/linkie.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- linkie.py 27 Apr 2003 12:48:30 -0000 1.45
+++ linkie.py 27 Apr 2003 13:32:45 -0000 1.46
@@ -117,6 +117,8 @@
if symbol[0] in '&%': value += this._origin
this._symbols.append((symbol, value))
return value
+ def __iadd__ (this, symbol):
+ this.place_symbol(symbol)
def align (this, boundary):
"""align(boundary)
Ensures that the following byte's memory address is divisible by
|