From a0eae0398c0b10ff3000e279e93e6eef83485ad0 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 26 Jan 2009 21:40:08 +0000 Subject: [PATCH] Fix comment. --- Objects/longobject.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index fdb5664af85..fdbda6b7011 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) |