Change the ctypes version number to "1.0.2".

This commit is contained in:
Thomas Heller 2007-01-10 20:07:29 +00:00
parent 346085eb87
commit 5131925034
2 changed files with 3 additions and 1 deletions

View 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

View File

@ -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.