[pypy-commit] pypy default: Remove unused function def that caused an IndentationError if we even tried to byte-compile it

stefanor noreply at buildbot.pypy.org
Sat Feb 23 18:05:07 CET 2013


Author: Stefano Rivera <stefano at rivera.za.net>
Branch: 
Changeset: r61686:d2124ec84344
Date: 2013-02-23 19:04 +0200
http://bitbucket.org/pypy/pypy/changeset/d2124ec84344/

Log:	Remove unused function def that caused an IndentationError if we
	even tried to byte-compile it

diff --git a/rpython/translator/goal/old_queries.py b/rpython/translator/goal/old_queries.py
--- a/rpython/translator/goal/old_queries.py
+++ b/rpython/translator/goal/old_queries.py
@@ -414,7 +414,6 @@
         links = 0
         ops = 0
     count = Counter()
-    def visit(block):
     for block in graph.iterblocks():
             count.blocks += 1
             count.ops += len(block.operations)


More information about the pypy-commit mailing list