<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""Small modules to cope with python 2 vs 3 incompatibilities inside
numpy.distutils

"""
from __future__ import division, absolute_import, print_function

import sys

def get_exception():
    return sys.exc_info()[1]
</pre></body></html>