Author: Carl Friedrich Bolz-Tereick <[email protected]>
Branch: 
Changeset: r93722:c61a8f2001e3
Date: 2018-01-30 13:05 +0100
http://bitbucket.org/pypy/pypy/changeset/c61a8f2001e3/

Log:    fix name of erasing pair (has no runtime effect, but sometimes
        easier to debug)

diff --git a/pypy/module/cpyext/sequence.py b/pypy/module/cpyext/sequence.py
--- a/pypy/module/cpyext/sequence.py
+++ b/pypy/module/cpyext/sequence.py
@@ -267,7 +267,7 @@
     raise oefmt(space.w_ValueError, "sequence.index(x): x not in sequence")
 
 class CPyListStrategy(ListStrategy):
-    erase, unerase = rerased.new_erasing_pair("empty")
+    erase, unerase = rerased.new_erasing_pair("cpylist")
     erase = staticmethod(erase)
     unerase = staticmethod(unerase)
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to