summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-08-05 22:43:22 -0700
committerRaymond Hettinger <python@rcn.com>2013-08-05 22:43:22 -0700
commit966eb3101af2ae9277acdc91adeeb081164a1063 (patch)
tree84f0dcf97051d2136e5eef0cd6efed24b7a78e18 /Include
parent3108fc5302e47237d4ccf18e307a4f88e5d0436c (diff)
downloadcpython-966eb3101af2ae9277acdc91adeeb081164a1063.tar.gz
Put the most important and most frequency accessed struct member first.
Diffstat (limited to 'Include')
-rw-r--r--Include/setobject.h2
1 files changed, 1 insertions, 1 deletions
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;