]> granicus.if.org Git - python/commitdiff
Change the ctypes version number to "1.0.2".
authorThomas Heller <theller@ctypes.org>
Wed, 10 Jan 2007 20:07:29 +0000 (20:07 +0000)
committerThomas Heller <theller@ctypes.org>
Wed, 10 Jan 2007 20:07:29 +0000 (20:07 +0000)
Lib/ctypes/__init__.py
Misc/NEWS

index 3a5c3b5a6ca02d6124adf44b86b2d8b0e685523c..4ebdb797d7d5fe8c76286cfb1a8f4290011db970 100644 (file)
@@ -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
index 4df89dade95130905dd265927ee82504be49f18d..87f162929036539070907c9b6a950ae299d3ed3c 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,8 @@ Core and builtins
 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.