Skip to content

Commit d33514b

Browse files
committed
fix: remove duplicate include of pycore_lock.h in _struct.c
1 parent 3130512 commit d33514b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_struct.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
#include "Python.h"
1111
#include "pycore_bytesobject.h" // _PyBytesWriter
12+
#include "pycore_lock.h" // _PyOnceFlag_CallOnce()
1213
#include "pycore_long.h" // _PyLong_AsByteArray()
1314
#include "pycore_moduleobject.h" // _PyModule_GetState()
1415
#include "pycore_weakref.h" // FT_CLEAR_WEAKREFS()
15-
#include "pycore_lock.h" // _PyOnceFlag_CallOnce()
1616

1717
#include <stddef.h> // offsetof()
1818

0 commit comments

Comments
 (0)