Skip to content

Commit 4f8cd77

Browse files
Code tidy for assert().
Co-authored-by: Kumar Aditya <[email protected]>
1 parent 6888024 commit 4f8cd77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/longobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2863,7 +2863,7 @@ long_from_non_binary_base(const char *start, const char *end, Py_ssize_t digits,
28632863
PyLongObject *z;
28642864
const char *p;
28652865

2866-
assert (log_base_BASE[base] != 0.0); // pre-computed by _PyLong_InitRuntime()
2866+
assert(log_base_BASE[base] != 0.0); // pre-computed by _PyLong_InitRuntime()
28672867

28682868
/* Create an int object that can contain the largest possible
28692869
* integer with this base and length. Note that there's no

0 commit comments

Comments
 (0)