Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r68539:8f69d56ced01
Date: 2013-12-25 21:07 +0100
http://bitbucket.org/pypy/pypy/changeset/8f69d56ced01/

Log:    Reduce confusion: call ordered dict's "dictentries" differently

diff --git a/rpython/rtyper/lltypesystem/rordereddict.py 
b/rpython/rtyper/lltypesystem/rordereddict.py
--- a/rpython/rtyper/lltypesystem/rordereddict.py
+++ b/rpython/rtyper/lltypesystem/rordereddict.py
@@ -110,7 +110,7 @@
         entrymeths['fasthashfn'] = ll_fasthash_function
 
     # Build the lltype data structures
-    DICTENTRY = lltype.Struct("dictentry", *entryfields)
+    DICTENTRY = lltype.Struct("odictentry", *entryfields)
     DICTENTRYARRAY = lltype.GcArray(DICTENTRY,
                                     adtmeths=entrymeths)
     fields =          [ ("num_items", lltype.Signed),
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to