From: Raymond Hettinger Date: Tue, 6 Aug 2013 05:43:22 +0000 (-0700) Subject: Put the most important and most frequency accessed struct member first. X-Git-Tag: v3.4.0a2~290 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=536f9fdcf3bbaf3dbe52d8ff77e525fefcf60c09;p=python Put the most important and most frequency accessed struct member first. --- diff --git a/Include/setobject.h b/Include/setobject.h index a14874bb0f..31f2123534 100644 --- a/Include/setobject.h +++ b/Include/setobject.h @@ -23,8 +23,8 @@ no meaning otherwise. typedef struct { /* Cached hash code of the key. */ - Py_hash_t hash; PyObject *key; + Py_hash_t hash; } setentry;