Skip to content

Commit a6edcea

Browse files
committed
Fix alignment
1 parent 2c8f077 commit a6edcea

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Include/internal/pycore_tuple.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ extern "C" {
88
# error "this header requires Py_BUILD_CORE define"
99
#endif
1010

11-
#include "pycore_object.h" // _PyObject_GC_IS_TRACKED
11+
#include "pycore_object.h" // _PyObject_GC_IS_TRACKED
1212
#include "pycore_structs.h" // _PyStackRef
1313

1414
extern void _PyTuple_MaybeUntrack(PyObject *);
@@ -39,8 +39,7 @@ typedef struct {
3939
_PyTuple_CAST(op)->ob_hash = -1; \
4040
} while (0)
4141

42-
/*
43-
bpo-42536: If reusing a tuple object, this should be called to re-track it
42+
/* bpo-42536: If reusing a tuple object, this should be called to re-track it
4443
with the garbage collector and reset its hash cache. */
4544
static inline void
4645
_PyTuple_Recycle(PyObject *op)

0 commit comments

Comments
 (0)