Skip to content

Commit 9711f62

Browse files
committed
Fixup comments
1 parent d3da41c commit 9711f62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Include/internal/pycore_stackref.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,14 +369,14 @@ static inline void PyStackRef_CheckValid(_PyStackRef ref) {
369369

370370
#endif
371371

372-
/* Does this ref have an embedded refcount */
372+
/* Does this ref not have an embedded refcount and refer to a mortal object? */
373373
static inline int
374374
PyStackRef_IsUncountedMortal(_PyStackRef ref)
375375
{
376376
return (ref.bits & Py_TAG_BITS) == 0;
377377
}
378378

379-
/* Does this ref have an embedded refcount and refer to a mortal object (NULL is not mortal) */
379+
/* Does this ref have an embedded refcount and refer to a mortal object (NULL is not mortal)? */
380380
static inline bool
381381
PyStackRef_IsCountedMortal(_PyStackRef ref)
382382
{

0 commit comments

Comments
 (0)