Author: Alex Gaynor <[email protected]>
Branch: refactor-signature
Changeset: r50778:3ad573e7d40c
Date: 2011-12-20 15:02 -0600
http://bitbucket.org/pypy/pypy/changeset/3ad573e7d40c/
Log: better name
diff --git a/pypy/module/micronumpy/signature.py
b/pypy/module/micronumpy/signature.py
--- a/pypy/module/micronumpy/signature.py
+++ b/pypy/module/micronumpy/signature.py
@@ -8,7 +8,7 @@
def sigeq(one, two):
return one.eq(two)
-def sigeq_numbering(one, two):
+def sigeq_no_numbering(one, two):
""" Cache for iterator numbering should not compare array numbers
"""
return one.eq(two, compare_array_no=False)
@@ -73,7 +73,7 @@
iter_no = 0
def invent_numbering(self):
- cache = r_dict(sigeq_numbering, sighash)
+ cache = r_dict(sigeq_no_numbering, sighash)
allnumbers = []
self._invent_numbering(cache, allnumbers)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit