From 4f72a78684bbfcdc43ceeabb240ceee54706c4b0 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 27 Oct 2006 23:31:49 +0000 Subject: Jiwon Seo's PEP 3102 implementation. See SF#1549670. The compiler package has not yet been updated. --- Lib/test/test_frozen.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Lib/test/test_frozen.py') diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index 8b121d38d8..673799dc86 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 -- cgit v1.2.1