diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-09 11:14:08 (GMT) |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-09 11:14:08 (GMT) |
commit | 8b3cf58fa55026b90a895a4dc0c18a3e557b7a2a (patch) | |
tree | bc6861f9a9b50abb2262c461dd1850fc810acd5d | |
parent | b08b2d316653bf22d39ad76814b5a0e7dad30c31 (diff) | |
download | cpython-8b3cf58fa55026b90a895a4dc0c18a3e557b7a2a.zip cpython-8b3cf58fa55026b90a895a4dc0c18a3e557b7a2a.tar.gz cpython-8b3cf58fa55026b90a895a4dc0c18a3e557b7a2a.tar.bz2 |
String method conversion.
(This one was trivial -- no actual string. references in it!)
-rw-r--r-- | Lib/distutils/bcppcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/bcppcompiler.py b/Lib/distutils/bcppcompiler.py index bb9557f..00ccec5 100644 --- a/Lib/distutils/bcppcompiler.py +++ b/Lib/distutils/bcppcompiler.py @@ -14,7 +14,7 @@ for the Borland C++ compiler. __revision__ = "$Id$" -import sys, os, string +import sys, os from distutils.errors import \ DistutilsExecError, DistutilsPlatformError, \ CompileError, LibError, LinkError |