Commit a3d3ab54 authored by Stefan Behnel's avatar Stefan Behnel

Make an import prefer Py3 over Py2, since that's what most people are (or...

Make an import prefer Py3 over Py2, since that's what most people are (or should be) using these days.
parent 6b174f82
......@@ -58,9 +58,9 @@ import textwrap
try:
reload
except NameError: # Python 3
from imp import reload
from importlib import reload
except ImportError: # Python 2 had a builtin function
pass
import hashlib
from distutils.core import Distribution, Extension
......
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