Commit 987831c9 authored by doko@ubuntu.com's avatar doko@ubuntu.com

Merge from 3.4:

- Issue #17756: Fix test_code test when run from the installed location.
parents 43e3d940 15bec9cb
......@@ -51,7 +51,7 @@ class TestInteractiveConsole(unittest.TestCase):
self.infunc.side_effect = ["undefined", EOFError('Finished')]
self.console.interact()
for call in self.stderr.method_calls:
if 'NameError:' in ''.join(call[1]):
if 'NameError' in ''.join(call[1]):
break
else:
raise AssertionError("No syntax error from console")
......
......@@ -456,6 +456,8 @@ Documentation
Tests
-----
- Issue #17756: Fix test_code test when run from the installed location.
- Issue #17752: Fix distutils tests when run from the installed location.
- Issue #18604: Consolidated checks for GUI availability. All platforms now
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment