[pypy-commit] pypy kill-import_from_lib_pypy: remove useless line continuation in ctypes cpumodel cache redirection template

RonnyPfannschmidt noreply at buildbot.pypy.org
Sun Jul 1 12:44:55 CEST 2012


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: kill-import_from_lib_pypy
Changeset: r55877:8b55cea442fa
Date: 2012-07-01 12:41 +0200
http://bitbucket.org/pypy/pypy/changeset/8b55cea442fa/

Log:	remove useless line continuation in ctypes cpumodel cache
	redirection template

diff --git a/pypy/tool/lib_pypy.py b/pypy/tool/lib_pypy.py
--- a/pypy/tool/lib_pypy.py
+++ b/pypy/tool/lib_pypy.py
@@ -41,7 +41,7 @@
 # XXX the relative imports done e.g. by lib_pypy/pypy_test/test_hashlib
 mod = __import__("_BASENAME_%s_" % (cpumodel,),
                  globals(), locals(), ["*"])
-globals().update(mod.__dict__)\\
+globals().update(mod.__dict__)
 '''.replace("BASENAME", basename))
 
 


More information about the pypy-commit mailing list