File tree 5 files changed +2
-8
lines changed 5 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 27
27
#include <err.h>
28
28
#include <dlfcn.h>
29
29
#include <stdlib.h>
30
- #include <Python.h>
31
30
#include <mach-o/dyld.h>
32
31
33
32
Original file line number Diff line number Diff line change 32
32
/* EVP is the preferred interface to hashing in OpenSSL */
33
33
#include <openssl/evp.h>
34
34
#include <openssl/hmac.h>
35
- #include <openssl/crypto.h>
35
+ #include <openssl/crypto.h> // FIPS_mode()
36
36
/* We use the object interface to discover what hashes OpenSSL supports. */
37
37
#include <openssl/objects.h>
38
38
#include <openssl/err.h>
39
39
40
- #include <openssl/crypto.h> // FIPS_mode()
41
40
42
41
#ifndef OPENSSL_THREADS
43
42
# error "OPENSSL_THREADS is not defined, Python requires thread-safe OpenSSL"
Original file line number Diff line number Diff line change 13
13
#include "pycore_bytesobject.h" // _PyBytes_Repeat
14
14
#include "structmember.h" // PyMemberDef
15
15
#include <stddef.h> // offsetof()
16
- #include <stddef.h>
17
16
18
17
/*[clinic input]
19
18
module array
Original file line number Diff line number Diff line change 13
13
#include "pycore_moduleobject.h" // _PyModule_GetState()
14
14
#include "pycore_pyerrors.h" // _PyErr_SetString()
15
15
#include "pycore_pystate.h" // _PyThreadState_GET()
16
- #include "pycore_signal.h"
16
+ #include "pycore_signal.h" // Py_NSIG
17
17
18
18
#ifndef MS_WINDOWS
19
19
# include "posixmodule.h"
28
28
# endif
29
29
#endif
30
30
31
- #include "pycore_signal.h" // Py_NSIG
32
-
33
31
#ifdef HAVE_SIGNAL_H
34
32
# include <signal.h>
35
33
#endif
Original file line number Diff line number Diff line change 9
9
#include "pycore_initconfig.h" // _PyConfig_InitCompatConfig()
10
10
#include "pycore_runtime.h" // _PyRuntime
11
11
#include "pycore_import.h" // _PyImport_FrozenBootstrap
12
- #include <Python.h>
13
12
#include <inttypes.h>
14
13
#include <stdio.h>
15
14
#include <stdlib.h> // putenv()
You can’t perform that action at this time.
0 commit comments