summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-11 22:47:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-11 22:47:34 (GMT)
commit6a45e9df94d2c77b37b3656e6109b6fd39e400fa (patch)
treecdf400945f8ccaf930a15c26f4652160da3b01b1 /Lib
parent0c70d2d144e611b1899b9bc134b82dcf2899e817 (diff)
downloadcpython-6a45e9df94d2c77b37b3656e6109b6fd39e400fa.zip
cpython-6a45e9df94d2c77b37b3656e6109b6fd39e400fa.tar.gz
cpython-6a45e9df94d2c77b37b3656e6109b6fd39e400fa.tar.bz2
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. ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_gdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 57e8aa0..77cf94f 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -21,7 +21,7 @@ except OSError:
gdb_version_number = re.search(b"^GNU gdb [^\d]*(\d+)\.", gdb_version)
if int(gdb_version_number.group(1)) < 7:
raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding"
- " Saw:\n" + gdb_version)
+ " Saw:\n" + gdb_version.decode('ascii', 'replace'))
# Verify that "gdb" was built with the embedded python support enabled:
cmd = "--eval-command=python import sys; print sys.version_info"