summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-02-04 09:53:22 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-02-04 09:53:22 (GMT)
commit685c203e84aeb2deddec05be39afd8f190bd54fe (patch)
tree2622de33546e6ed1c68fd9aec354329671c647cc /Modules
parent93260281159844908bd988e5286bd5372f012cf3 (diff)
downloadcpython-685c203e84aeb2deddec05be39afd8f190bd54fe.zip
cpython-685c203e84aeb2deddec05be39afd8f190bd54fe.tar.gz
cpython-685c203e84aeb2deddec05be39afd8f190bd54fe.tar.bz2
Removed redundant Argument Clinic directives.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/pyexpat.c5
-rw-r--r--Modules/sha512module.c9
2 files changed, 0 insertions, 14 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index 03bac57..e0c9be7 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -1980,8 +1980,3 @@ static struct HandlerInfo handler_info[] = {
{NULL, NULL, NULL} /* sentinel */
};
-
-/*[clinic input]
-dump buffer
-[clinic start generated code]*/
-/*[clinic end generated code: output=da39a3ee5e6b4b0d input=524ce2e021e4eba6]*/
diff --git a/Modules/sha512module.c b/Modules/sha512module.c
index 8b2d073..5ac2a2a 100644
--- a/Modules/sha512module.c
+++ b/Modules/sha512module.c
@@ -550,10 +550,6 @@ SHA512Type_update(SHAobject *self, PyObject *obj)
PyBuffer_Release(&buf);
Py_RETURN_NONE;
}
-/*[clinic input]
-dump buffer
-[clinic start generated code]*/
-/*[clinic end generated code: output=da39a3ee5e6b4b0d input=524ce2e021e4eba6]*/
static PyMethodDef SHA_methods[] = {
SHA512TYPE_COPY_METHODDEF
@@ -747,11 +743,6 @@ _sha512_sha384_impl(PyObject *module, PyObject *string)
}
-/*[clinic input]
-dump buffer
-[clinic start generated code]*/
-/*[clinic end generated code: output=da39a3ee5e6b4b0d input=524ce2e021e4eba6]*/
-
/* List of functions exported by this module */
static struct PyMethodDef SHA_functions[] = {