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 ...@@ -58,9 +58,9 @@ import textwrap
try: try:
reload from importlib import reload
except NameError: # Python 3 except ImportError: # Python 2 had a builtin function
from imp import reload pass
import hashlib import hashlib
from distutils.core import Distribution, Extension 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