Skip to content

Commit 2463bbd

Browse files
fmt
1 parent f330202 commit 2463bbd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/socketmodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ Local naming conventions:
108108
#include "Python.h"
109109
#include "pycore_capsule.h" // _PyCapsule_SetTraverse()
110110
#include "pycore_fileutils.h" // _Py_set_inheritable()
111-
#include "pycore_pyatomic_ft_wrappers.h"
112111
#include "pycore_moduleobject.h" // _PyModule_GetState
113112
#include "pycore_time.h" // _PyTime_AsMilliseconds()
113+
#include "pycore_pyatomic_ft_wrappers.h"
114114

115115
#ifdef _Py_MEMORY_SANITIZER
116116
# include <sanitizer/msan_interface.h>
@@ -573,6 +573,7 @@ static int sock_cloexec_works = -1;
573573

574574
#define SET_SOCK_CLOEXEC_WORKS(value) FT_ATOMIC_STORE_INT_RELAXED(sock_cloexec_works, value)
575575
#define GET_SOCK_CLOEXEC_WORKS() FT_ATOMIC_LOAD_INT_RELAXED(sock_cloexec_works)
576+
576577
#endif
577578

578579
static inline socket_state *

0 commit comments

Comments
 (0)