diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-21 12:54:24 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-21 12:54:24 (GMT) |
commit | 3e0196cc00a371a03a0e9c8b7ce71593681ef11d (patch) | |
tree | 54267dec9b671dd7f4cff6d0a5098396921a1e12 /Lib/test/test_macfs.py | |
parent | 7e0bc112b8bc1174449f5573c03e51e00805218b (diff) | |
download | cpython-3e0196cc00a371a03a0e9c8b7ce71593681ef11d.zip cpython-3e0196cc00a371a03a0e9c8b7ce71593681ef11d.tar.gz cpython-3e0196cc00a371a03a0e9c8b7ce71593681ef11d.tar.bz2 |
Adding unicode filename support to FSRefs broke things on MacOS9. "Fixed" by disabling unicode filenames on OS9.
Diffstat (limited to 'Lib/test/test_macfs.py')
-rw-r--r-- | Lib/test/test_macfs.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/test/test_macfs.py b/Lib/test/test_macfs.py index f6b72ee..ad6db88 100644 --- a/Lib/test/test_macfs.py +++ b/Lib/test/test_macfs.py @@ -5,6 +5,7 @@ import warnings warnings.filterwarnings("ignore", "macfs.*", DeprecationWarning, __name__) import macfs import os +import sys import tempfile from test import test_support @@ -30,9 +31,10 @@ class TestMacfs(unittest.TestCase): self.assertEqual(os.path.realpath(test_support.TESTFN), fsr.as_pathname()) def test_fsref_unicode(self): - testfn_unicode = unicode(test_support.TESTFN) - fsr = macfs.FSRef(testfn_unicode) - self.assertEqual(os.path.realpath(test_support.TESTFN), fsr.as_pathname()) + if sys.getfilesystemencoding(): + testfn_unicode = unicode(test_support.TESTFN) + fsr = macfs.FSRef(testfn_unicode) + self.assertEqual(os.path.realpath(test_support.TESTFN), fsr.as_pathname()) def test_coercion(self): fss = macfs.FSSpec(test_support.TESTFN) |