From ce1aa6851d3e407db3d3209162b5f10dc57a42d8 Mon Sep 17 00:00:00 2001 From: "mark.dickinson" Date: Mon, 26 Jan 2009 21:40:08 +0000 Subject: [PATCH] Fix comment. git-svn-id: http://svn.python.org/projects/python/trunk@68975 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Objects/longobject.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index fdb5664af8..fdbda6b701 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -1977,9 +1977,9 @@ long_hash(PyLongObject *v) i = -(i); } #define LONG_BIT_PyLong_SHIFT (8*sizeof(long) - PyLong_SHIFT) - /* The following loop produces a C long x such that x is congruent to - the absolute value of v modulo ULONG_MAX. The resulting x is - nonzero if and only if v is. */ + /* The following loop produces a C unsigned long x such that x is + congruent to the absolute value of v modulo ULONG_MAX. The + resulting x is nonzero if and only if v is. */ while (--i >= 0) { /* Force a native long #-bits (32 or 64) circular shift */ x = ((x << PyLong_SHIFT) & ~PyLong_MASK) | -- 2.11.4.GIT