[Python-checkins] r53357 - in python/branches/release25-maint: Lib/ctypes/__init__.py Misc/NEWS

thomas.heller python-checkins at python.org
Wed Jan 10 21:07:30 CET 2007


Author: thomas.heller
Date: Wed Jan 10 21:07:29 2007
New Revision: 53357

Modified:
   python/branches/release25-maint/Lib/ctypes/__init__.py
   python/branches/release25-maint/Misc/NEWS
Log:
Change the ctypes version number to "1.0.2".

Modified: python/branches/release25-maint/Lib/ctypes/__init__.py
==============================================================================
--- python/branches/release25-maint/Lib/ctypes/__init__.py	(original)
+++ python/branches/release25-maint/Lib/ctypes/__init__.py	Wed Jan 10 21:07:29 2007
@@ -5,7 +5,7 @@
 
 import os as _os, sys as _sys
 
-__version__ = "1.0.1"
+__version__ = "1.0.2"
 
 from _ctypes import Union, Structure, Array
 from _ctypes import _Pointer

Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Wed Jan 10 21:07:29 2007
@@ -89,6 +89,8 @@
 Extension Modules
 -----------------
 
+- The version number of the ctypes package was changed to "1.0.2".
+
 - Patch #1544279: Improve thread-safety of the socket module by moving
   the sock_addr_t storage out of the socket object.
 


More information about the Python-checkins mailing list