From: Thomas Heller Date: Wed, 10 Jan 2007 20:12:13 +0000 (+0000) Subject: Change the ctypes version number to "1.1.0". X-Git-Tag: v2.6a1~2297 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb9d78733e4ece2911eb8ac8462018b3a2a4b4ff;p=thirdparty%2FPython%2Fcpython.git Change the ctypes version number to "1.1.0". --- diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py index 6a6053e636ac..f37c3b49a2d3 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 diff --git a/Misc/NEWS b/Misc/NEWS index b3f03e700992..564e3b11920c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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".