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
|
|
@ -509,8 +509,8 @@ Return a new MD5 hash object; optionally initialized with a string.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
_md5_md5_impl(PyModuleDef *module, PyObject *string)
|
||||
/*[clinic end generated code: output=3527436a2090b956 input=d12ef8f72d684f7b]*/
|
||||
_md5_md5_impl(PyObject *module, PyObject *string)
|
||||
/*[clinic end generated code: output=2cfd0f8c091b97e6 input=d12ef8f72d684f7b]*/
|
||||
{
|
||||
MD5object *new;
|
||||
Py_buffer buf;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue