diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-13 23:41:57 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-13 23:41:57 (GMT) |
| commit | d24fc5d7c4baed7b0abcf49f06e3030ca61692f7 (patch) | |
| tree | 49758ca3bbca58e9cd092893dc86ee6205277eb5 /Lib/test/test_sys.py | |
| parent | 052a04d34a3841996af59962b038f05af63abacc (diff) | |
| download | cpython-d24fc5d7c4baed7b0abcf49f06e3030ca61692f7.zip cpython-d24fc5d7c4baed7b0abcf49f06e3030ca61692f7.tar.gz cpython-d24fc5d7c4baed7b0abcf49f06e3030ca61692f7.tar.bz2 | |
test_sys: Remove workaround #8611
It looks like it is no more needed: Python 3.2 is slowly able to support
non-ascii paths with an ascii locale.
Diffstat (limited to 'Lib/test/test_sys.py')
| -rw-r--r-- | Lib/test/test_sys.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 6e8aa25..8c3a1db 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -502,9 +502,6 @@ class SysModuleTest(unittest.TestCase): @unittest.skipIf(sys.platform == 'win32', 'Windows has a native unicode API') def test_undecodable_code(self): - # Raise SkipTest() if sys.executable is not encodable to ascii - test.support.workaroundIssue8611() - undecodable = b"\xff" env = os.environ.copy() # Use C locale to get ascii for the locale encoding |
