From: Raymond Hettinger Date: Mon, 29 Dec 2014 01:15:12 +0000 (-0800) Subject: Minor comment clean-up X-Git-Tag: v3.5.0a1~266 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f063a54ce6147c15199d42c26dc09b35cd678d0;p=thirdparty%2FPython%2Fcpython.git Minor comment clean-up --- diff --git a/Include/setobject.h b/Include/setobject.h index edf1b63855d3..8f8e34f25468 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.