Author: Alex Gaynor <[email protected]>
Branch:
Changeset: r59185:136c3c38f638
Date: 2012-12-01 12:50 -0800
http://bitbucket.org/pypy/pypy/changeset/136c3c38f638/
Log: remove some unused imports
diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -1,11 +1,12 @@
-import autopath
-import py, os
import sys
-from pypy.config.config import OptionDescription, BoolOption, IntOption,
ArbitraryOption
-from pypy.config.config import ChoiceOption, StrOption, to_optparse, Config
-from pypy.config.config import ConflictConfigError
+
+import py
+
+from pypy.config.config import (OptionDescription, BoolOption, IntOption,
+ ChoiceOption, StrOption, to_optparse, ConflictConfigError)
from pypy.config.translationoption import IS_64_BITS
+
modulepath = py.path.local(__file__).dirpath().dirpath().join("module")
all_modules = [p.basename for p in modulepath.listdir()
if p.check(dir=True, dotfile=False)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit