Skip to content

Commit 58d1ad6

Browse files
committed
Move Include/pystrhex.h to Include/cpython/pystrhex.h
1 parent bf5a48c commit 58d1ad6

File tree

18 files changed

+6
-19
lines changed

18 files changed

+6
-19
lines changed

Include/Python.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@
157157
#include "cpython/pyctype.h"
158158
#include "pystrtod.h"
159159
#include "pystrcmp.h"
160+
#include "cpython/pystrhex.h"
160161
#include "fileutils.h"
161162
#include "cpython/pyfpe.h"
162163
#include "tracemalloc.h"
File renamed without changes.

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,6 @@ PYTHON_HEADERS= \
10721072
$(srcdir)/Include/pyport.h \
10731073
$(srcdir)/Include/pystate.h \
10741074
$(srcdir)/Include/pystrcmp.h \
1075-
$(srcdir)/Include/pystrhex.h \
10761075
$(srcdir)/Include/pystrtod.h \
10771076
$(srcdir)/Include/pythonrun.h \
10781077
$(srcdir)/Include/pythread.h \
@@ -1122,6 +1121,7 @@ PYTHON_HEADERS= \
11221121
$(srcdir)/Include/cpython/pylifecycle.h \
11231122
$(srcdir)/Include/cpython/pymem.h \
11241123
$(srcdir)/Include/cpython/pystate.h \
1124+
$(srcdir)/Include/cpython/pystrhex.h \
11251125
$(srcdir)/Include/cpython/pythonrun.h \
11261126
$(srcdir)/Include/cpython/pytime.h \
11271127
$(srcdir)/Include/cpython/sysmodule.h \

Modules/_blake2/blake2b_impl.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*/
1515

1616
#include "Python.h"
17-
#include "pystrhex.h"
1817

1918
#include "../hashlib.h"
2019
#include "blake2ns.h"

Modules/_blake2/blake2s_impl.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*/
1515

1616
#include "Python.h"
17-
#include "pystrhex.h"
1817

1918
#include "../hashlib.h"
2019
#include "blake2ns.h"

Modules/_hashopenssl.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
#include "Python.h"
1717
#include "hashlib.h"
18-
#include "pystrhex.h"
1918

2019

2120
/* EVP is the preferred interface to hashing in OpenSSL */

Modules/_sha3/sha3module.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*/
1717

1818
#include "Python.h"
19-
#include "pystrhex.h"
2019
#include "../hashlib.h"
2120

2221
/* **************************************************************************

Modules/binascii.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
#define PY_SSIZE_T_CLEAN
5757

5858
#include "Python.h"
59-
#include "pystrhex.h"
6059
#ifdef USE_ZLIB_CRC32
6160
#include "zlib.h"
6261
#endif

Modules/md5module.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
#include "Python.h"
2020
#include "hashlib.h"
21-
#include "pystrhex.h"
2221

2322
/*[clinic input]
2423
module _md5

Modules/sha1module.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
#include "Python.h"
2020
#include "hashlib.h"
21-
#include "pystrhex.h"
2221

2322
/*[clinic input]
2423
module _sha1

0 commit comments

Comments
 (0)