From: Guido van Rossum Date: Tue, 15 Jan 2002 21:25:51 +0000 (+0000) Subject: Disable code intended for PEP 277. X-Git-Tag: v2.3c1~6843 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eaa0a22f433fd8c2774976a4482035491a64d6f2;p=python Disable code intended for PEP 277. --- diff --git a/Lib/test/test_unicode_file.py b/Lib/test/test_unicode_file.py index 6cd965e83c..e46e1a9e37 100644 --- a/Lib/test/test_unicode_file.py +++ b/Lib/test/test_unicode_file.py @@ -55,11 +55,12 @@ if not os.path.isfile(TESTFN_UNICODE) or \ print "File doesn't exist after creating it" path, base = os.path.split(os.path.abspath(TESTFN_ENCODED)) -if base not in os.listdir(path): - print "Filename did not appear in os.listdir()" -path, base = os.path.split(os.path.abspath(TESTFN_UNICODE)) -if base not in os.listdir(path): - print "Unicode filename did not appear in os.listdir()" +# Until PEP 277 is adopted, this test is not portable +# if base not in os.listdir(path): +# print "Filename did not appear in os.listdir()" +# path, base = os.path.split(os.path.abspath(TESTFN_UNICODE)) +# if base not in os.listdir(path): +# print "Unicode filename did not appear in os.listdir()" if os.path.abspath(TESTFN_ENCODED) != os.path.abspath(glob.glob(TESTFN_ENCODED)[0]): print "Filename did not appear in glob.glob()"