diff options
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 76417b9..819fadd 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -185,7 +185,7 @@ lookdict(dictobject *mp, PyObject *key, register long hash) /* Cycle through GF(2^n)-{0} */ incr = incr << 1; if (incr > mask) - incr ^= mp->ma_poly; /* This will implicitely clear + incr ^= mp->ma_poly; /* This will implicitly clear the highest bit */ } } |