Commit 5dddf7f2 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove compatibility branch for Python 3.0-3.1.

parent e0fd60cf
...@@ -377,11 +377,7 @@ def get_build_platform(): ...@@ -377,11 +377,7 @@ def get_build_platform():
XXX Currently this is the same as ``distutils.util.get_platform()``, but it XXX Currently this is the same as ``distutils.util.get_platform()``, but it
needs some hacks for Linux and Mac OS X. needs some hacks for Linux and Mac OS X.
""" """
try: from sysconfig import get_platform
# Python 2.7 or >=3.2
from sysconfig import get_platform
except ImportError:
from distutils.util import get_platform
plat = get_platform() plat = get_platform()
if sys.platform == "darwin" and not plat.startswith('macosx-'): if sys.platform == "darwin" and not plat.startswith('macosx-'):
......
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