[ctypes-commit] ctypes/ctypes __init__.py,1.61.2.14,1.61.2.15
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2005-11-30 09:34:24
|
Update of /cvsroot/ctypes/ctypes/ctypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv568 Modified Files: Tag: branch_1_0 __init__.py Log Message: Implement BigEndianStructure and LittleEndianStructure. Index: __init__.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/__init__.py,v retrieving revision 1.61.2.14 retrieving revision 1.61.2.15 diff -C2 -d -r1.61.2.14 -r1.61.2.15 *** __init__.py 29 Nov 2005 20:14:57 -0000 1.61.2.14 --- __init__.py 30 Nov 2005 09:34:16 -0000 1.61.2.15 *************** *** 9,13 **** del _magicfile ! __version__ = "0.9.9.0" from _ctypes import Union, Structure, Array --- 9,13 ---- del _magicfile ! __version__ = "0.9.9.1" from _ctypes import Union, Structure, Array *************** *** 461,462 **** --- 461,464 ---- pass return result + + from ctypes._endian import BigEndianStructure, LittleEndianStructure |