Commit ef42212c authored by Jeremy Hylton's avatar Jeremy Hylton

Verify that the imp can find and load .py files.

parent 65b6d559
......@@ -69,3 +69,8 @@ try:
test_with_extension(ext)
finally:
del sys.path[0]
# Verify that the imp module can correctly load and find .py files
import imp
x = imp.find_module("os")
os = imp.load_module("os", *x)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment