diff options
author | Guido van Rossum <guido@python.org> | 2006-10-27 23:31:49 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-10-27 23:31:49 (GMT) |
commit | 4f72a78684bbfcdc43ceeabb240ceee54706c4b0 (patch) | |
tree | 743c27c5125dcef580cffe77395fe97bedf40d5f /Lib/test/test_frozen.py | |
parent | fc2a0a8e3cb1d40fd965576060c28c8bd2ea1ad5 (diff) | |
download | cpython-4f72a78684bbfcdc43ceeabb240ceee54706c4b0.zip cpython-4f72a78684bbfcdc43ceeabb240ceee54706c4b0.tar.gz cpython-4f72a78684bbfcdc43ceeabb240ceee54706c4b0.tar.bz2 |
Jiwon Seo's PEP 3102 implementation.
See SF#1549670.
The compiler package has not yet been updated.
Diffstat (limited to 'Lib/test/test_frozen.py')
-rw-r--r-- | Lib/test/test_frozen.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index 8b121d3..673799d 100644 --- a/Lib/test/test_frozen.py +++ b/Lib/test/test_frozen.py @@ -1,4 +1,11 @@ # Test the frozen module defined in frozen.c. +# 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 from test.test_support import TestFailed import sys, os |