diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-27 15:08:41 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-27 15:08:41 -0500 |
commit | 9c5b87a057da48d44457021e2dcb843eb7122977 (patch) | |
tree | 4b53b2c6610c311f77d11c8614a9153b4ddcb546 /setuptools/command/build_py.py | |
parent | f8c923f27aa52c5447d8669e8246e3cc27282e21 (diff) | |
download | external_python_setuptools-9c5b87a057da48d44457021e2dcb843eb7122977.tar.gz external_python_setuptools-9c5b87a057da48d44457021e2dcb843eb7122977.tar.bz2 external_python_setuptools-9c5b87a057da48d44457021e2dcb843eb7122977.zip |
Reorganize imports
Diffstat (limited to 'setuptools/command/build_py.py')
-rw-r--r-- | setuptools/command/build_py.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index 8751acd4..c9aa07ed 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -1,4 +1,6 @@ -import os.path, sys, fnmatch +import os +import sys +import fnmatch from distutils.command.build_py import build_py as _build_py from distutils.util import convert_path from glob import glob |