diff options
author | Thomas Heller <theller@ctypes.org> | 2007-01-10 20:12:13 +0000 |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2007-01-10 20:12:13 +0000 |
commit | fb9d78733e4ece2911eb8ac8462018b3a2a4b4ff (patch) | |
tree | 64c51b177d64164d2c64b0b039e4eaf91e2a026c | |
parent | 37e6502c252f654ef30295e3b685f4bfaf006be5 (diff) | |
download | cpython-git-fb9d78733e4ece2911eb8ac8462018b3a2a4b4ff.tar.gz |
Change the ctypes version number to "1.1.0".
-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 6a6053e636..f37c3b49a2 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.1.0" from _ctypes import Union, Structure, Array from _ctypes import _Pointer @@ -109,6 +109,8 @@ Core and builtins Library ------- +- The version number of the ctypes package changed to "1.1.0". + - Bug #1627575: logging: Added _open() method to FileHandler which can be used to reopen files. The FileHandler instance now saves the encoding (which can be None) in an attribute called "encoding". |