diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-26 10:46:37 -0400 | 
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-26 10:46:37 -0400 | 
| commit | 38b6f23637bcf8db5b9237393399041fbe36c65f (patch) | |
| tree | c5738b6d3a2adb95eef02fd8d8b510faab5c3d37 /setuptools/command/install_lib.py | |
| parent | b908527864443899b89cf568ac9397aef7ad16c9 (diff) | |
| download | python-setuptools-git-38b6f23637bcf8db5b9237393399041fbe36c65f.tar.gz | |
Reorganize imports
Diffstat (limited to 'setuptools/command/install_lib.py')
| -rw-r--r-- | setuptools/command/install_lib.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/setuptools/command/install_lib.py b/setuptools/command/install_lib.py index c2730568..cc531c01 100644 --- a/setuptools/command/install_lib.py +++ b/setuptools/command/install_lib.py @@ -1,6 +1,7 @@ -import distutils.command.install_lib as orig -import os, imp +import os +import imp  from itertools import product +import distutils.command.install_lib as orig  class install_lib(orig.install_lib):      """Don't add compiled flags to filenames of non-Python files""" | 
