[pypy-commit] pypy default: disable mapdict-size-limit, broken for unicode

mattip pypy.commits at gmail.com
Tue Feb 13 08:22:11 EST 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r93818:8fdeeb9d6730
Date: 2018-02-13 08:17 -0500
http://bitbucket.org/pypy/pypy/changeset/8fdeeb9d6730/

Log:	disable mapdict-size-limit, broken for unicode

diff --git a/pypy/objspace/std/mapdict.py b/pypy/objspace/std/mapdict.py
--- a/pypy/objspace/std/mapdict.py
+++ b/pypy/objspace/std/mapdict.py
@@ -27,7 +27,7 @@
 
 # the maximum number of attributes stored in mapdict (afterwards just use a
 # dict)
-LIMIT_MAP_ATTRIBUTES = 80
+LIMIT_MAP_ATTRIBUTES = 8000
 
 
 class AbstractAttribute(object):


More information about the pypy-commit mailing list