diff options
author | Raymond Hettinger <python@rcn.com> | 2014-12-29 01:15:12 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-12-29 01:15:12 (GMT) |
commit | 3f063a54ce6147c15199d42c26dc09b35cd678d0 (patch) | |
tree | 4f2443efccb5fab70c85f62f4d13da4b0779e525 /Include | |
parent | 4dcd61f1f34748fea3bfed0f17a67ab78262650b (diff) | |
download | cpython-3f063a54ce6147c15199d42c26dc09b35cd678d0.zip cpython-3f063a54ce6147c15199d42c26dc09b35cd678d0.tar.gz cpython-3f063a54ce6147c15199d42c26dc09b35cd678d0.tar.bz2 |
Minor comment clean-up
Diffstat (limited to 'Include')
-rw-r--r-- | Include/setobject.h | 3 |
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. |