Browse Source

Put the most important and most frequency accessed struct member first.

pull/224/head
Raymond Hettinger 13 years ago
parent
commit
536f9fdcf3
  1. 2
      Include/setobject.h

2
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;

Loading…
Cancel
Save