Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: remove duplicate include of pycore_lock.h in _struct.c
  • Loading branch information
ashm-dev committed Nov 2, 2025
commit d33514b66f4c90258b6c1ed05a66e51c7bb1a3ac
2 changes: 1 addition & 1 deletion Modules/_struct.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

#include "Python.h"
#include "pycore_bytesobject.h" // _PyBytesWriter
#include "pycore_lock.h" // _PyOnceFlag_CallOnce()
#include "pycore_long.h" // _PyLong_AsByteArray()
#include "pycore_moduleobject.h" // _PyModule_GetState()
#include "pycore_weakref.h" // FT_CLEAR_WEAKREFS()
#include "pycore_lock.h" // _PyOnceFlag_CallOnce()

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

Expand Down
Loading