Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv21491
Modified Files:
linkie.py
Log Message:
added Linkie.__slots__
Index: linkie.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/linkie.py,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- linkie.py 13 May 2003 12:58:46 -0000 1.58
+++ linkie.py 13 May 2003 13:20:04 -0000 1.59
@@ -10,6 +10,8 @@
from array import array
class Linkie (Bits):
+ __slots__ = ['_skipped', '_byte_order', '_symbols', '_alignment',
+ '_skipped', '_locals', '_unresolved_locals', '_linker_notes']
def __init__ (this, byte_order = None):
Bits.__init__(this, byte_order)
this._skipped = 0
|