Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bb4a47c8
Commit
bb4a47c8
authored
Jul 16, 2003
by
Mark Hammond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent failure on the mac, where "mbcs" is not the file system
encoding. Use sys.getfilesystemencoding().
parent
0bb242b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Lib/test/test_pep277.py
Lib/test/test_pep277.py
+3
-2
No files found.
Lib/test/test_pep277.py
View file @
bb4a47c8
# 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
os
,
unittest
import
sys
,
os
,
unittest
from
test
import
test_support
if
not
os
.
path
.
supports_unicode_filenames
:
raise
test_support
.
TestSkipped
,
"test works only on NT+"
...
...
@@ -79,7 +79,8 @@ class UnicodeFileTests(unittest.TestCase):
def
test_listdir
(
self
):
f1
=
os
.
listdir
(
test_support
.
TESTFN
)
f1
.
sort
()
f2
=
os
.
listdir
(
unicode
(
test_support
.
TESTFN
,
"mbcs"
))
f2
=
os
.
listdir
(
unicode
(
test_support
.
TESTFN
,
sys
.
getfilesystemencoding
()))
f2
.
sort
()
print
f1
print
f2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment