New submission from Joseph Armbruster:
test_pep277 failed on one of my windows boxes. It looks as if an import
unicode is missing.
See attached patch.
----------
components: Tests
files: testpep277.patch
messages: 58876
nosy: JosephArmbruster
severity: normal
status: open
title: test_pep277 missing unicode import
versions: Python 3.0
Added file: http://bugs.python.org/file9013/testpep277.patch
__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1673>
__________________________________
Index: Lib/test/test_pep277.py
===================================================================
--- Lib/test/test_pep277.py (revision 59579)
+++ Lib/test/test_pep277.py (working copy)
@@ -1,6 +1,6 @@
# Test the Unicode versions of normal file functions
# open, os.open, os.stat. os.listdir, os.rename, os.remove, os.mkdir, os.chdir, os.rmdir
-import sys, os, unittest
+import sys, os, unittest, unicode
from test import test_support
if not os.path.supports_unicode_filenames:
raise test_support.TestSkipped("test works only on NT+")
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com