From: Jesus Cea Date: Wed, 3 Sep 2008 20:23:47 +0000 (+0000) Subject: The decode is used to workaround this: X-Git-Tag: v3.0rc1~118 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6a6d3fcff3738038a4bba209898460144b8a228;p=python The decode is used to workaround this: http://mail.python.org/pipermail/python-3000/2008-September/014709.html --- diff --git a/Lib/test/test_bsddb3.py b/Lib/test/test_bsddb3.py index 8bba1690d8..41d0e219de 100644 --- a/Lib/test/test_bsddb3.py +++ b/Lib/test/test_bsddb3.py @@ -57,7 +57,9 @@ def test_main(): os.getpid())) # Please leave this print in, having this show up in the buildbots # makes diagnosing problems a lot easier. - print(db.DB_VERSION_STRING, file=sys.stderr) + # The decode is used to workaround this: + # http://mail.python.org/pipermail/python-3000/2008-September/014709.html + print(db.DB_VERSION_STRING.decode("iso8859-1"), file=sys.stderr) print('Test path prefix: ', test_all.get_test_path_prefix(), file=sys.stderr) try: run_unittest(test_all.suite(module_prefix='bsddb.test.',