summaryrefslogtreecommitdiff
path: root/Lib/test/support.py
diff options
context:
space:
mode:
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")