Update of /cvsroot/ctypes/ctypes/ctypes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15826
Modified Files:
Tag: branch_1_0
_endian.py
Log Message:
Add missing 'import sys'.
Index: _endian.py
===================================================================
RCS file: /cvsroot/ctypes/ctypes/ctypes/Attic/_endian.py,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** _endian.py 30 Nov 2005 09:34:40 -0000 1.1.2.1
--- _endian.py 2 Jan 2006 15:08:53 -0000 1.1.2.2
***************
*** 1,2 ****
--- 1,3 ----
+ import sys
from ctypes import *
|