Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/distutils/compat.py @ 87:2a2c65a20a8b
Add Python libs and headers
author | Chris Cannam |
---|---|
date | Wed, 25 Feb 2015 14:05:22 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
86:413a9d26189e | 87:2a2c65a20a8b |
---|---|
1 """Small modules to cope with python 2 vs 3 incompatibilities inside | |
2 numpy.distutils | |
3 | |
4 """ | |
5 from __future__ import division, absolute_import, print_function | |
6 | |
7 import sys | |
8 | |
9 def get_exception(): | |
10 return sys.exc_info()[1] |