mirror of https://github.com/python/cpython
Minor comment clean-up
This commit is contained in:
parent
4dcd61f1f3
commit
3f063a54ce
|
@ -22,9 +22,8 @@ no meaning otherwise.
|
||||||
#define PySet_MINSIZE 8
|
#define PySet_MINSIZE 8
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
/* Cached hash code of the key. */
|
|
||||||
PyObject *key;
|
PyObject *key;
|
||||||
Py_hash_t hash;
|
Py_hash_t hash; /* Cached hash code of the key */
|
||||||
} setentry;
|
} setentry;
|
||||||
|
|
||||||
/* The SetObject data structure is shared by set and frozenset objects.
|
/* The SetObject data structure is shared by set and frozenset objects.
|
||||||
|
|
Loading…
Reference in New Issue