summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
Diffstat (limited to 'Include')
-rw-r--r--Include/setobject.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/setobject.h b/Include/setobject.h
index edf1b63..8f8e34f 100644
--- a/Include/setobject.h
+++ b/Include/setobject.h
@@ -22,9 +22,8 @@ no meaning otherwise.
#define PySet_MINSIZE 8
typedef struct {
- /* Cached hash code of the key. */
PyObject *key;
- Py_hash_t hash;
+ Py_hash_t hash; /* Cached hash code of the key */
} setentry;
/* The SetObject data structure is shared by set and frozenset objects.