diff options
author | Georg Brandl <georg@python.org> | 2009-06-06 18:21:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-06 18:21:58 (GMT) |
commit | 18187e2167e4d1863bbe78050078ea4f761e1dd1 (patch) | |
tree | 7c819a22946e3026c51fa3ebc29e2237aa77ae0c /Lib | |
parent | e3b9b5e4ede02d5d85698fabc5f28af25d4d56b4 (diff) | |
download | cpython-18187e2167e4d1863bbe78050078ea4f761e1dd1.zip cpython-18187e2167e4d1863bbe78050078ea4f761e1dd1.tar.gz cpython-18187e2167e4d1863bbe78050078ea4f761e1dd1.tar.bz2 |
#6224: s/JPython/Jython/, and remove one link to a module nine years old.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/imputil.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/imputil.py b/Lib/imputil.py index 0eba435..8b37ef4 100644 --- a/Lib/imputil.py +++ b/Lib/imputil.py @@ -14,7 +14,7 @@ warnpy3k("the imputil module has been removed in Python 3.0", stacklevel=2) del warnpy3k # note: avoid importing non-builtin modules -import imp ### not available in JPython? +import imp ### not available in Jython? import sys import __builtin__ @@ -25,7 +25,7 @@ import marshal __all__ = ["ImportManager","Importer","BuiltinImporter"] _StringType = type('') -_ModuleType = type(sys) ### doesn't work in JPython... +_ModuleType = type(sys) ### doesn't work in Jython... class ImportManager: "Manage the import process." @@ -639,8 +639,8 @@ def _test_revamp(): # TODO # # from Finn Bock: -# type(sys) is not a module in JPython. what to use instead? -# imp.C_EXTENSION is not in JPython. same for get_suffixes and new_module +# type(sys) is not a module in Jython. what to use instead? +# imp.C_EXTENSION is not in Jython. same for get_suffixes and new_module # # given foo.py of: # import sys |