12 lines
748 B
Diff
12 lines
748 B
Diff
|
--- Lib/test/test_gdb.py.old 2012-04-11 19:35:13.512681203 -0400
|
||
|
+++ Lib/test/test_gdb.py 2012-04-11 19:39:52.567192540 -0400
|
||
|
@@ -159,7 +159,7 @@ class DebuggerTests(unittest.TestCase):
|
||
|
# gdb can insert additional '\n' and space characters in various places
|
||
|
# in its output, depending on the width of the terminal it's connected
|
||
|
# to (using its "wrap_here" function)
|
||
|
- m = re.match('.*#0\s+builtin_id\s+\(self\=.*,\s+v=\s*(.*?)\)\s+at\s+Python/bltinmodule.c.*',
|
||
|
+ m = re.match('.*#0\s+builtin_id\s+\(self\=.*,\s+v=\s*(.*?)\)\s+at\s+\S*Python/bltinmodule.c.*',
|
||
|
gdb_output, re.DOTALL)
|
||
|
if not m:
|
||
|
self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output))
|