summaryrefslogtreecommitdiff
path: root/Modules/clinic/_cryptmodule.c.h
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-23 12:30:35 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-23 12:30:35 +0200
commitc0f01d9eb22ed81c49d8c9fbfd49b6d4c4020310 (patch)
tree0cd6281ec236943f3b1831af10b05ba694d6a790 /Modules/clinic/_cryptmodule.c.h
parent33a6e5e5b5f5b6f6e08b83e2a1136c9b4285d5cc (diff)
parent06100f2d9d19f6d7eb5440aa1edff598d24a2775 (diff)
downloadcpython-c0f01d9eb22ed81c49d8c9fbfd49b6d4c4020310.tar.gz
Issue #26729: Fixed __text_signature__ for sorted().
Patch by Erik Welch.
Diffstat (limited to 'Modules/clinic/_cryptmodule.c.h')
-rw-r--r--Modules/clinic/_cryptmodule.c.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/clinic/_cryptmodule.c.h b/Modules/clinic/_cryptmodule.c.h
index a3c371cbaa..412c6fe8a1 100644
--- a/Modules/clinic/_cryptmodule.c.h
+++ b/Modules/clinic/_cryptmodule.c.h
@@ -27,11 +27,12 @@ crypt_crypt(PyObject *module, PyObject *args)
const char *salt;
if (!PyArg_ParseTuple(args, "ss:crypt",
- &word, &salt))
+ &word, &salt)) {
goto exit;
+ }
return_value = crypt_crypt_impl(module, word, salt);
exit:
return return_value;
}
-/*[clinic end generated code: output=e0493a9691537690 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=8dfc88264e662df4 input=a9049054013a1b77]*/