[Python-checkins] cpython: Minor comment clean-up

raymond.hettinger python-checkins at python.org
Mon Dec 29 02:15:34 CET 2014


https://hg.python.org/cpython/rev/abd5f4cf57b9
changeset:   93981:abd5f4cf57b9
parent:      93979:11fd71a37665
user:        Raymond Hettinger <python at rcn.com>
date:        Sun Dec 28 17:15:12 2014 -0800
summary:
  Minor comment clean-up

files:
  Include/setobject.h |  3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/Include/setobject.h b/Include/setobject.h
--- a/Include/setobject.h
+++ b/Include/setobject.h
@@ -22,9 +22,8 @@
 #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.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list