diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-06-04 13:27:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 13:27:23 -0700 |
commit | e4e5ec18e2f79f9bba439b531ebf89ac148deda0 (patch) | |
tree | 34f87d0127f60cfab21d1d25489ee204714081e7 /Modules/sha256module.c | |
parent | 082cff1786d0a6a6500a51e67ab4f8a3a3f2c312 (diff) | |
download | cpython-git-e4e5ec18e2f79f9bba439b531ebf89ac148deda0.tar.gz |
bpo-40865: Remove unused insint() macro from hash modules (GH-20627)
Automerge-Triggered-By: @tiran
(cherry picked from commit 6ed578f6dbffdec94f62cc2e36d626fc195678d7)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Modules/sha256module.c')
-rw-r--r-- | Modules/sha256module.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/sha256module.c b/Modules/sha256module.c index e0ff9b2b3a..8edb1d5382 100644 --- a/Modules/sha256module.c +++ b/Modules/sha256module.c @@ -684,9 +684,6 @@ static struct PyMethodDef SHA_functions[] = { /* Initialize this module. */ -#define insint(n,v) { PyModule_AddIntConstant(m,n,v); } - - static struct PyModuleDef _sha256module = { PyModuleDef_HEAD_INIT, "_sha256", |