[pypy-commit] pypy py3k: Fix syntax error

amauryfa noreply at buildbot.pypy.org
Sun Jun 28 18:17:16 CEST 2015


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r78341:74539bd81aa5
Date: 2015-06-28 18:16 +0200
http://bitbucket.org/pypy/pypy/changeset/74539bd81aa5/

Log:	Fix syntax error

diff --git a/lib_pypy/_tkinter/tclobj.py b/lib_pypy/_tkinter/tclobj.py
--- a/lib_pypy/_tkinter/tclobj.py
+++ b/lib_pypy/_tkinter/tclobj.py
@@ -25,7 +25,7 @@
 
         result = app.call('expr', '2**63')
         typePtr = AsObj(result).typePtr
-        if tkffi.string(typePtr.name) == v"bignum":
+        if tkffi.string(typePtr.name) == b"bignum":
             self.BigNumType = typePtr
 
 


More information about the pypy-commit mailing list