Skip to content

Commit b0fd0d8

Browse files
eendebakptvstinner
andauthored
Update Objects/longobject.c
Co-authored-by: Victor Stinner <[email protected]>
1 parent b9a487d commit b0fd0d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Objects/longobject.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3683,8 +3683,9 @@ long_hash(PyObject *obj)
36833683
--i;
36843684
x = v->long_value.ob_digit[i];
36853685
assert(x < PyHASH_MODULUS);
3686-
// unroll second digit
3686+
36873687
#if ( PyHASH_BITS > (2 * PyLong_SHIFT) )
3688+
// unroll second digit
36883689
assert(i>=1);
36893690
--i;
36903691
x <<= PyLong_SHIFT;

0 commit comments

Comments
 (0)