Issue 27921: Remove backslash from another f-string. I'll revert this change before beta 2. I also need to look in to why test_tools/test_unparse fails with the files that are now being skipped.

This commit is contained in:
Eric V. Smith 2016-09-03 12:33:38 -04:00
parent 7c4e409d07
commit 06cf601e4f
3 changed files with 14 additions and 4 deletions

View file

@ -735,11 +735,11 @@ class FaultHandlerTests(unittest.TestCase):
('EXCEPTION_INT_DIVIDE_BY_ZERO', 'int divide by zero'),
('EXCEPTION_STACK_OVERFLOW', 'stack overflow'),
):
self.check_windows_exception(f"""
self.check_windows_exception("""
import faulthandler
faulthandler.enable()
faulthandler._raise_exception(faulthandler._{exc})
""",
""".format(exc=exc),
3,
name)