From: Victor Stinner Date: Sat, 1 Feb 2014 03:26:46 +0000 (+0100) Subject: test_hash: Fix a BytesWarning in get_hash_command() X-Git-Tag: v3.4.0rc1~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f54db3a858c85b23c2bbf547c0b22f1a369fc31;p=thirdparty%2FPython%2Fcpython.git test_hash: Fix a BytesWarning in get_hash_command() --- diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index 3d2859fdd0db..69c169fc6c95 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py @@ -172,7 +172,7 @@ class HashRandomizationTests: # an object to be tested def get_hash_command(self, repr_): - return 'print(hash(eval(%s.decode("utf-8"))))' % repr_.encode("utf-8") + return 'print(hash(eval(%r.decode("utf-8"))))' % repr_.encode("utf-8") def get_hash(self, repr_, seed=None): env = os.environ.copy()