Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r61616:47700c7e20d3
Date: 2013-02-22 18:21 +0200
http://bitbucket.org/pypy/pypy/changeset/47700c7e20d3/

Log:    some misses

diff --git a/rpython/rtyper/lltypesystem/rdict.py 
b/rpython/rtyper/lltypesystem/rdict.py
--- a/rpython/rtyper/lltypesystem/rdict.py
+++ b/rpython/rtyper/lltypesystem/rdict.py
@@ -424,22 +424,22 @@
     dummy = ENTRIES.dummy_obj.ll_dummy_value
     return entries.everused(i) and entries[i].value != dummy
 
[email protected](None, int)
[email protected](None, SomeInteger(nonneg=True))
 def ll_mark_deleted_in_value(entries, i):
     ENTRIES = lltype.typeOf(entries).TO
     dummy = ENTRIES.dummy_obj.ll_dummy_value
     entries[i].value = dummy
 
[email protected](None, int)
[email protected](None, SomeInteger(nonneg=True))
 def ll_hash_from_cache(entries, i):
     return entries[i].f_hash
 
[email protected](None, int)
[email protected](None, SomeInteger(nonneg=True))
 def ll_hash_recomputed(entries, i):
     ENTRIES = lltype.typeOf(entries).TO
     return ENTRIES.fasthashfn(entries[i].key)
 
[email protected](None, int)
[email protected](None, SomeInteger(nonneg=True))
 def ll_get_value(d, i):
     return d.entries[i].value
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to