summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pep277.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_pep277.py')
-rw-r--r--Lib/test/test_pep277.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pep277.py b/Lib/test/test_pep277.py
index b48317f..f307089 100644
--- a/Lib/test/test_pep277.py
+++ b/Lib/test/test_pep277.py
@@ -78,11 +78,11 @@ class UnicodeFileTests(unittest.TestCase):
def test_listdir(self):
f1 = os.listdir(test_support.TESTFN)
- f1.sort()
+ # Printing f1 is not appropriate, as specific filenames
+ # returned depend on the local encoding
f2 = os.listdir(unicode(test_support.TESTFN,
sys.getfilesystemencoding()))
f2.sort()
- print f1
print f2
def test_rename(self):