changeset: 99981:652a50208e89 branch: 3.5 parent: 99979:bf997b22df06 user: Serhiy Storchaka date: Tue Jan 19 13:55:36 2016 +0200 files: Lib/msilib/__init__.py Misc/NEWS description: Issue #16620: Fixed AttributeError in msilib.Directory.glob(). diff -r bf997b22df06 -r 652a50208e89 Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py Tue Jan 19 08:48:48 2016 +0100 +++ b/Lib/msilib/__init__.py Tue Jan 19 13:55:36 2016 +0200 @@ -1,7 +1,11 @@ # Copyright (C) 2005 Martin v. Löwis # Licensed to PSF under a Contributor Agreement. from _msi import * -import os, string, re, sys +import glob +import os +import re +import string +import sys AMD64 = "AMD64" in sys.version Itanium = "Itanium" in sys.version diff -r bf997b22df06 -r 652a50208e89 Misc/NEWS --- a/Misc/NEWS Tue Jan 19 08:48:48 2016 +0100 +++ b/Misc/NEWS Tue Jan 19 13:55:36 2016 +0200 @@ -46,6 +46,8 @@ Library ------- +- Issue #16620: Fixed AttributeError in msilib.Directory.glob(). + - Issue #26013: Added compatibility with broken protocol 2 pickles created in old Python 3 versions (3.4.3 and lower).