diff options
author | Thomas Heller <theller@ctypes.org> | 2007-01-10 20:07:29 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2007-01-10 20:07:29 (GMT) |
commit | 5131925034319a9ebaa21be0db37b5b75db3a697 (patch) | |
tree | 1f7877e6ba983d64690088045ba434fada1fd153 | |
parent | 346085eb876df482956b66bf4c5aeb8e5a790af7 (diff) | |
download | cpython-5131925034319a9ebaa21be0db37b5b75db3a697.zip cpython-5131925034319a9ebaa21be0db37b5b75db3a697.tar.gz cpython-5131925034319a9ebaa21be0db37b5b75db3a697.tar.bz2 |
Change the ctypes version number to "1.0.2".
-rw-r--r-- | Lib/ctypes/__init__.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py index 3a5c3b5..4ebdb79 100644 --- a/Lib/ctypes/__init__.py +++ b/Lib/ctypes/__init__.py @@ -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 @@ -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. |