Skip to content

Commit 640b326

Browse files
committed
address review: fix comment
1 parent 21c59bb commit 640b326

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Include/internal/pycore_long.h

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,7 @@ _PyLong_SameSign(const PyLongObject *a, const PyLongObject *b)
286286
return (a->long_value.lv_tag & SIGN_MASK) == (b->long_value.lv_tag & SIGN_MASK);
287287
}
288288

289-
/* Initialize a freshly-allocated int.
290-
*
291-
* Fast operations for single digit integers (including zero)
292-
* assume that there is always at least one digit present.
293-
* The digit has to be initialized explicitly to avoid
294-
* use-of-uninitialized-value.
295-
*/
289+
/* Initialize the tag of a freshly-allocated int. */
296290
static inline void
297291
_PyLong_InitTag(PyLongObject *op)
298292
{

0 commit comments

Comments
 (0)