]> granicus.if.org Git - python/commitdiff
Minor comment clean-up
authorRaymond Hettinger <python@rcn.com>
Mon, 29 Dec 2014 01:15:12 +0000 (17:15 -0800)
committerRaymond Hettinger <python@rcn.com>
Mon, 29 Dec 2014 01:15:12 +0000 (17:15 -0800)
Include/setobject.h

index edf1b63855d3d2cf56f53417960b0a587a6e9c91..8f8e34f254688d63d3e853bc88a74b515cb0aee2 100644 (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.