summaryrefslogtreecommitdiff
path: root/Lib/test/support.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-13 23:41:57 +0000
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-13 23:41:57 +0000
commitd24fc5d7c4baed7b0abcf49f06e3030ca61692f7 (patch)
tree49758ca3bbca58e9cd092893dc86ee6205277eb5 /Lib/test/support.py
parent052a04d34a3841996af59962b038f05af63abacc (diff)
downloadcpython-git-d24fc5d7c4baed7b0abcf49f06e3030ca61692f7.tar.gz
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/support.py')
-rw-r--r--Lib/test/support.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py
index df3e493cc7..08ce0a05fa 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -1327,11 +1327,3 @@ def strip_python_stderr(stderr):
"""
stderr = re.sub(br"\[\d+ refs\]\r?\n?$", b"", stderr).strip()
return stderr
-
-def workaroundIssue8611():
- try:
- sys.executable.encode('ascii')
- except UnicodeEncodeError:
- raise unittest.SkipTest(
- "Issue #8611: Python doesn't support ascii locale encoding "
- "with an non-ascii path")