From: <wme...@us...> - 2010-02-12 21:53:07
|
Revision: 6977 http://jython.svn.sourceforge.net/jython/?rev=6977&view=rev Author: wmeissner Date: 2010-02-12 21:53:00 +0000 (Fri, 12 Feb 2010) Log Message: ----------- Fix issue #1554 ctypes module has no attribute '__version__' ctypes.__version__ is now 0.0.1 Modified Paths: -------------- trunk/jython/Lib/ctypes/__init__.py Modified: trunk/jython/Lib/ctypes/__init__.py =================================================================== --- trunk/jython/Lib/ctypes/__init__.py 2010-02-03 01:28:54 UTC (rev 6976) +++ trunk/jython/Lib/ctypes/__init__.py 2010-02-12 21:53:00 UTC (rev 6977) @@ -1,5 +1,7 @@ import jffi +__version__ = "0.0.1" + _TypeMap = { 'b': jffi.Type.BYTE, 'B': jffi.Type.UBYTE, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |