Author: Maciej Fijalkowski <fij...@gmail.com> Branch: rdict-experiments-2 Changeset: r59912:4fe4f7845b00 Date: 2013-01-10 12:23 +0200 http://bitbucket.org/pypy/pypy/changeset/4fe4f7845b00/
Log: fix, I need to write a test for that diff --git a/pypy/rpython/lltypesystem/rdict.py b/pypy/rpython/lltypesystem/rdict.py --- a/pypy/rpython/lltypesystem/rdict.py +++ b/pypy/rpython/lltypesystem/rdict.py @@ -478,7 +478,7 @@ return _ll_dict_setitem_lookup_done(d, key, value, hash, i) def ll_dict_insertclean(d, key, value, hash): - i = ll_dict_lookup_clean(d, key, hash) + i = ll_dict_lookup_clean(d, hash) return _ll_dict_setitem_lookup_done(d, key, value, hash, i) def ll_dict_lookup_clean(d, hash): _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit