diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-02-26 23:47:00 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-02-26 23:47:00 (GMT) |
commit | 041fb344f1f637c31174b8a28a998c9359b74e2c (patch) | |
tree | 8b265619d34ca7925c9a19cdc697aa9094305f6c | |
parent | 2f060fb5a2a5320be291dc6d016e65b5054e31de (diff) | |
download | cpython-041fb344f1f637c31174b8a28a998c9359b74e2c.zip cpython-041fb344f1f637c31174b8a28a998c9359b74e2c.tar.gz cpython-041fb344f1f637c31174b8a28a998c9359b74e2c.tar.bz2 |
Merged revisions 70003 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70003 | tarek.ziade | 2009-02-27 00:44:00 +0100 (Fri, 27 Feb 2009) | 1 line
removed unused import
........
-rw-r--r-- | Lib/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index b12da63..1d5a75d 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -7,7 +7,7 @@ extensions ASAP).""" __revision__ = "$Id$" import sys, os, re -from site import USER_BASE, USER_SITE +from site import USER_BASE from distutils.core import Command from distutils.errors import * from distutils.sysconfig import customize_compiler, get_python_version |