diff options
author | Christian Heimes <christian@python.org> | 2020-05-15 23:54:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 14:54:53 -0700 |
commit | 9b60e55db2897acc30d6b9ef1dbc49674eed40c7 (patch) | |
tree | 7b664911353173da34a6eced7e7fb9a5750fa5b8 /pyconfig.h.in | |
parent | a2b3cdd661a4b6c6c74adbfcb6ac1865bfd2a011 (diff) | |
download | cpython-git-9b60e55db2897acc30d6b9ef1dbc49674eed40c7.tar.gz |
bpo-40637: Add option to disable builtin hashes (GH-20121)
Signed-off-by: Christian Heimes <christian@python.org>
Automerge-Triggered-By: @tiran
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index c06c495872..bc906a869b 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1385,6 +1385,9 @@ /* Define as the preferred size in bits of long digits */ #undef PYLONG_BITS_IN_DIGIT +/* enabled builtin hash modules */ +#undef PY_BUILTIN_HASHLIB_HASHES + /* Define if you want to coerce the C locale to a UTF-8 based locale */ #undef PY_COERCE_C_LOCALE |