diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2020-06-04 20:08:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 20:08:42 (GMT) |
commit | 6ed578f6dbffdec94f62cc2e36d626fc195678d7 (patch) | |
tree | a3535716cfea4ec9686b8a6946d7dfd5a5a414dd /Modules/sha1module.c | |
parent | 7a280197f4162e5fcdde6f34701a9fa6e669190d (diff) | |
download | cpython-6ed578f6dbffdec94f62cc2e36d626fc195678d7.zip cpython-6ed578f6dbffdec94f62cc2e36d626fc195678d7.tar.gz cpython-6ed578f6dbffdec94f62cc2e36d626fc195678d7.tar.bz2 |
bpo-40865: Remove unused insint() macro from hash modules (GH-20627)
Automerge-Triggered-By: @tiran
Diffstat (limited to 'Modules/sha1module.c')
-rw-r--r-- | Modules/sha1module.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/sha1module.c b/Modules/sha1module.c index e066b880..b0656d8 100644 --- a/Modules/sha1module.c +++ b/Modules/sha1module.c @@ -529,9 +529,6 @@ static struct PyMethodDef SHA1_functions[] = { /* Initialize this module. */ -#define insint(n,v) { PyModule_AddIntConstant(m,n,v); } - - static struct PyModuleDef _sha1module = { PyModuleDef_HEAD_INIT, "_sha1", |