summaryrefslogtreecommitdiff
path: root/Objects/clinic/unicodeobject.c.h
diff options
context:
space:
mode:
authordoko <doko@ubuntu.com>2017-01-31 13:51:21 +0100
committerdoko <doko@ubuntu.com>2017-01-31 13:51:21 +0100
commitf18049fe65b515378c7c051fc0b8e41c8cfd0f17 (patch)
treece101a13b494d9953b2a6b84046d2f6bb469b6de /Objects/clinic/unicodeobject.c.h
parentd273026aa0ab78e7eafec5bdfb5233afdb2c97c0 (diff)
parente0cb38ac4330d5e09b5e21c74c5d5e453af99a4f (diff)
downloadcpython-f18049fe65b515378c7c051fc0b8e41c8cfd0f17.tar.gz
merge 3.5
Diffstat (limited to 'Objects/clinic/unicodeobject.c.h')
-rw-r--r--Objects/clinic/unicodeobject.c.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Objects/clinic/unicodeobject.c.h b/Objects/clinic/unicodeobject.c.h
index d42a70002a..891e90c312 100644
--- a/Objects/clinic/unicodeobject.c.h
+++ b/Objects/clinic/unicodeobject.c.h
@@ -31,11 +31,12 @@ unicode_maketrans(void *null, PyObject *args)
PyObject *z = NULL;
if (!PyArg_ParseTuple(args, "O|UU:maketrans",
- &x, &y, &z))
+ &x, &y, &z)) {
goto exit;
+ }
return_value = unicode_maketrans_impl(x, y, z);
exit:
return return_value;
}
-/*[clinic end generated code: output=94affdff5b2daff5 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=4a86dd108d92d104 input=a9049054013a1b77]*/