diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-12-25 13:23:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-25 13:23:47 +0200 |
commit | 32d96a2b5bc3136d45a66adbdb45fac351b520ce (patch) | |
tree | acf51c9945f764ab103597c9cba376f154aa600d /Modules/_sha3 | |
parent | bpo-20180: Simplify char_converter in Argument Clinic. (GH-9828) (diff) | |
download | cpython-32d96a2b5bc3136d45a66adbdb45fac351b520ce.tar.gz cpython-32d96a2b5bc3136d45a66adbdb45fac351b520ce.tar.bz2 cpython-32d96a2b5bc3136d45a66adbdb45fac351b520ce.zip |
bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689)
Diffstat (limited to 'Modules/_sha3')
-rw-r--r-- | Modules/_sha3/clinic/sha3module.c.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_sha3/clinic/sha3module.c.h b/Modules/_sha3/clinic/sha3module.c.h index b2a896ec916..554442df0ec 100644 --- a/Modules/_sha3/clinic/sha3module.c.h +++ b/Modules/_sha3/clinic/sha3module.c.h @@ -83,7 +83,7 @@ _sha3_shake_128_digest(SHA3object *self, PyObject *arg) PyObject *return_value = NULL; unsigned long length; - if (!PyArg_Parse(arg, "O&:digest", _PyLong_UnsignedLong_Converter, &length)) { + if (!_PyLong_UnsignedLong_Converter(arg, &length)) { goto exit; } return_value = _sha3_shake_128_digest_impl(self, length); @@ -110,7 +110,7 @@ _sha3_shake_128_hexdigest(SHA3object *self, PyObject *arg) PyObject *return_value = NULL; unsigned long length; - if (!PyArg_Parse(arg, "O&:hexdigest", _PyLong_UnsignedLong_Converter, &length)) { + if (!_PyLong_UnsignedLong_Converter(arg, &length)) { goto exit; } return_value = _sha3_shake_128_hexdigest_impl(self, length); @@ -118,4 +118,4 @@ _sha3_shake_128_hexdigest(SHA3object *self, PyObject *arg) exit: return return_value; } -/*[clinic end generated code: output=bf823532a7bffe68 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=5b3e99b9a96471e8 input=a9049054013a1b77]*/ |