Commit 64625710 authored by Jason R. Coombs's avatar Jason R. Coombs

Trap additional exceptions. Fixes #536.

parent 06eae678
......@@ -2,6 +2,13 @@
CHANGES
=======
v20.7
-----
* Issue #536: In msvc9_support, trap additional exceptions
that might occur when importing
``distutils.msvc9compiler`` in mingw environments.
v20.6.8
-------
......
try:
import distutils.msvc9compiler
except ImportError:
except Exception:
pass
unpatched = dict()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment