bpo-30860: Always provide serialno. (#3507) · python/cpython@ba6d5d1

Original file line numberDiff line numberDiff line change

@@ -40,8 +40,8 @@ struct _pymem_runtime_state {

4040

size_t ntimes_arena_allocated;

4141

poolp usedpools[MAX_POOLS];

4242

Py_ssize_t num_allocated_blocks;

43-

size_t serialno; /* incremented on each debug {m,re}alloc */

4443

#endif /* WITH_PYMALLOC */

44+

size_t serialno; /* incremented on each debug {m,re}alloc */

4545

};

4646
4747

PyAPI_FUNC(void) _PyMem_Initialize(struct _pymem_runtime_state *);