Author: Matti Picus <[email protected]> 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): _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
