Skip to content

Commit eb817fd

Browse files
committed
cleanup imports
1 parent 4263688 commit eb817fd

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Modules/_hashopenssl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
#include "Python.h"
2626
#include "pycore_hashtable.h"
27-
#include "pycore_strhex.h" // _Py_strhex()
28-
#include "pycore_pyatomic_ft_wrappers.h" // FT_ATOMIC_LOAD_PTR_RELAXED
27+
#include "pycore_strhex.h" // _Py_strhex()
28+
#include "pycore_pyatomic_ft_wrappers.h" // FT_ATOMIC_LOAD_PTR_RELAXED
2929

3030
#include "_hashlib/hashlib_buffer.h"
3131
#include "_hashlib/hashlib_fetch.h"
@@ -34,7 +34,7 @@
3434
/* EVP is the preferred interface to hashing in OpenSSL */
3535
#include <openssl/evp.h>
3636
#include <openssl/hmac.h>
37-
#include <openssl/crypto.h> // FIPS_mode()
37+
#include <openssl/crypto.h> // FIPS_mode()
3838
/* We use the object interface to discover what hashes OpenSSL supports. */
3939
#include <openssl/objects.h>
4040
#include <openssl/err.h>

Modules/blake2module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#include "Python.h"
1818
#include "pycore_moduleobject.h"
19-
#include "pycore_strhex.h" // _Py_strhex()
19+
#include "pycore_strhex.h" // _Py_strhex()
2020
#include "pycore_typeobject.h"
2121

2222
#include "_hashlib/hashlib_buffer.h"

Modules/md5module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#endif
2323

2424
#include "Python.h"
25-
#include "pycore_strhex.h" // _Py_strhex()
25+
#include "pycore_strhex.h" // _Py_strhex()
2626

2727
#include "_hashlib/hashlib_buffer.h"
2828
#include "_hashlib/hashlib_mutex.h"

Modules/sha1module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#endif
2121

2222
#include "Python.h"
23-
#include "pycore_strhex.h" // _Py_strhex()
24-
#include "pycore_typeobject.h" // _PyType_GetModuleState()
23+
#include "pycore_strhex.h" // _Py_strhex()
24+
#include "pycore_typeobject.h" // _PyType_GetModuleState()
2525

2626
#include "_hashlib/hashlib_buffer.h"
2727
#include "_hashlib/hashlib_mutex.h"

Modules/sha2module.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
#endif
2222

2323
#include "Python.h"
24-
#include "pycore_moduleobject.h" // _PyModule_GetState()
25-
#include "pycore_strhex.h" // _Py_strhex()
26-
#include "pycore_typeobject.h" // _PyType_GetModuleState()
24+
#include "pycore_moduleobject.h" // _PyModule_GetState()
25+
#include "pycore_strhex.h" // _Py_strhex()
26+
#include "pycore_typeobject.h" // _PyType_GetModuleState()
2727

2828
#include "_hashlib/hashlib_buffer.h"
2929
#include "_hashlib/hashlib_mutex.h"

Modules/sha3module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#endif
2222

2323
#include "Python.h"
24-
#include "pycore_strhex.h" // _Py_strhex()
25-
#include "pycore_typeobject.h" // _PyType_GetModuleState()
24+
#include "pycore_strhex.h" // _Py_strhex()
25+
#include "pycore_typeobject.h" // _PyType_GetModuleState()
2626

2727
#include "_hashlib/hashlib_buffer.h"
2828
#include "_hashlib/hashlib_mutex.h"

0 commit comments

Comments
 (0)