Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv32081
Modified Files:
linkie.py
Log Message:
implemented Linkie.get_byte_order
Index: linkie.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/linkie.py,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- linkie.py 18 May 2003 21:56:26 -0000 1.64
+++ linkie.py 22 May 2003 17:01:30 -0000 1.65
@@ -175,6 +175,8 @@
Returns length of the linker note list of this linkie."""
if this._unresolved_locals: raise 'Incomplete linkie', this
return len(this._linker_notes)
+ def get_byte_order (this):
+ return this._byte_order
def copy (this):
if this._unresolved_locals: raise 'Incomplete linkie', this
|