mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Issue #27332: Fixed the type of the first argument of module-level functions
generated by Argument Clinic. Patch by Petr Viktorin.
This commit is contained in:
parent
b8a2f51ceb
commit
1a2b24f02d
71 changed files with 1814 additions and 1835 deletions
|
|
@ -486,8 +486,8 @@ Return a new SHA1 hash object; optionally initialized with a string.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
_sha1_sha1_impl(PyModuleDef *module, PyObject *string)
|
||||
/*[clinic end generated code: output=3e4e841386b9e8db input=27ea54281d995ec2]*/
|
||||
_sha1_sha1_impl(PyObject *module, PyObject *string)
|
||||
/*[clinic end generated code: output=e5982830d1dece51 input=27ea54281d995ec2]*/
|
||||
{
|
||||
SHA1object *new;
|
||||
Py_buffer buf;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue