diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-11-20 16:10:29 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-11-20 16:10:29 (GMT) |
commit | 2db92a6ee1fbc580cc9373b1a722987408d294a1 (patch) | |
tree | cfe011ee405335643fe51eccaeb8efb30acf1106 /Lib/distutils | |
parent | 1b99896944acaef036769a9206bf33474e0fa80f (diff) | |
download | cpython-2db92a6ee1fbc580cc9373b1a722987408d294a1.zip cpython-2db92a6ee1fbc580cc9373b1a722987408d294a1.tar.gz cpython-2db92a6ee1fbc580cc9373b1a722987408d294a1.tar.bz2 |
Add missing import
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/extension.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/extension.py b/Lib/distutils/extension.py index 5b197fa..e420944 100644 --- a/Lib/distutils/extension.py +++ b/Lib/distutils/extension.py @@ -5,7 +5,7 @@ modules in setup scripts.""" __revision__ = "$Id$" -import os, string +import os, string, sys from types import * try: |