Minor comment clean-up

This commit is contained in:
Raymond Hettinger 2014-12-28 17:15:12 -08:00
parent 4dcd61f1f3
commit 3f063a54ce
1 changed files with 1 additions and 2 deletions

View File

@ -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.