[ctypes-commit] ctypes/ctypes __init__.py,1.80,1.81
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-03-10 07:51:57
|
Update of /cvsroot/ctypes/ctypes/ctypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16115 Modified Files: __init__.py Log Message: Bump version number to 0.9.9.5. Check for 64-bit portability issues on Windows, by using the /Wp64 compiler switch. Index: __init__.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/__init__.py,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -d -r1.80 -r1.81 *** __init__.py 10 Mar 2006 06:58:49 -0000 1.80 --- __init__.py 10 Mar 2006 07:51:55 -0000 1.81 *************** *** 6,9 **** --- 6,10 ---- from itertools import chain as _chain + # XXX Remove this for the python core version _magicfile = _os.path.join(_os.path.dirname(__file__), ".CTYPES_DEVEL") if _os.path.isfile(_magicfile): *************** *** 11,15 **** del _magicfile ! __version__ = "0.9.9.4" from _ctypes import Union, Structure, Array --- 12,16 ---- del _magicfile ! __version__ = "0.9.9.5" from _ctypes import Union, Structure, Array |