Skip to content

Commit

Permalink
+1
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Jan 20, 2025
1 parent 8c30627 commit 4f2ce53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/complexobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ c_powu(Py_complex x, long n)
r = c_1;
p = x;
assert(0 <= n);
assert(n <= C_EXP_CUTOFF);
assert(n <= INT_EXP_CUTOFF);
while (n >= mask) {
assert(mask > 0);
if (n & mask)
Expand Down

0 comments on commit 4f2ce53

Please sign in to comment.