2001-10-18 15:49:37 -03:00
|
|
|
# Test the frozen module defined in frozen.c.
|
2006-10-27 20:31:49 -03:00
|
|
|
# Currently test_frozen fails:
|
|
|
|
# Implementing pep3102(keyword only argument) needs changes in
|
|
|
|
# code object, which needs modification to marshal.
|
|
|
|
# However, to regenerate hard-coded marshal data in frozen.c,
|
|
|
|
# we need to run Tools/freeze/freeze.py, which currently doesn't work
|
|
|
|
# because Lib/modulefinder.py cannot handle relative module import
|
|
|
|
# This test will keep failing until Lib/modulefinder.py is fixed
|
2001-10-18 15:49:37 -03:00
|
|
|
|
2002-07-30 20:27:12 -03:00
|
|
|
from test.test_support import TestFailed
|
2001-10-18 15:49:37 -03:00
|
|
|
import sys, os
|
|
|
|
|
|
|
|
try:
|
|
|
|
import __hello__
|
|
|
|
except ImportError, x:
|
2002-11-01 07:33:00 -04:00
|
|
|
raise TestFailed, "import __hello__ failed:" + str(x)
|
2001-10-18 15:49:37 -03:00
|
|
|
|
|
|
|
try:
|
|
|
|
import __phello__
|
|
|
|
except ImportError, x:
|
2002-11-01 07:33:00 -04:00
|
|
|
raise TestFailed, "import __phello__ failed:" + str(x)
|
2001-10-18 15:49:37 -03:00
|
|
|
|
|
|
|
try:
|
|
|
|
import __phello__.spam
|
|
|
|
except ImportError, x:
|
2002-11-01 07:33:00 -04:00
|
|
|
raise TestFailed, "import __phello__.spam failed:" + str(x)
|
2001-10-18 15:49:37 -03:00
|
|
|
|
2003-01-08 12:30:54 -04:00
|
|
|
if sys.platform != "mac": # On the Mac this import does succeed.
|
|
|
|
try:
|
|
|
|
import __phello__.foo
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
raise TestFailed, "import __phello__.foo should have failed"
|