Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6a45e9d

Browse files
committed
Blocked revisions 79979 via svnmerge
........ r79979 | antoine.pitrou | 2010-04-12 00:45:47 +0200 (lun., 12 avril 2010) | 3 lines Fix misplaced items and incorrect title. ........
1 parent 0c70d2d commit 6a45e9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_gdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
gdb_version_number = re.search(b"^GNU gdb [^\d]*(\d+)\.", gdb_version)
2222
if int(gdb_version_number.group(1)) < 7:
2323
raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding"
24-
" Saw:\n" + gdb_version)
24+
" Saw:\n" + gdb_version.decode('ascii', 'replace'))
2525

2626
# Verify that "gdb" was built with the embedded python support enabled:
2727
cmd = "--eval-command=python import sys; print sys.version_info"

0 commit comments

Comments
 (0)