diff options
author | Raymond Hettinger <python@rcn.com> | 2002-12-29 16:33:45 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-12-29 16:33:45 (GMT) |
commit | ea3fdf44a29accd666a3b5f058539c351d921657 (patch) | |
tree | abf57eaa340195873a649d2d42d50e0dba856064 /Objects/stringobject.c | |
parent | f8bcfb13f126d3990dbccecb48a3d74b11e7841e (diff) | |
download | cpython-ea3fdf44a29accd666a3b5f058539c351d921657.zip cpython-ea3fdf44a29accd666a3b5f058539c351d921657.tar.gz cpython-ea3fdf44a29accd666a3b5f058539c351d921657.tar.bz2 |
SF patch #659536: Use PyArg_UnpackTuple where possible.
Obtain cleaner coding and a system wide
performance boost by using the fast, pre-parsed
PyArg_Unpack function instead of PyArg_ParseTuple
function which is driven by a format string.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r-- | Objects/stringobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 7937b46..1e42856 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -2046,7 +2046,7 @@ string_translate(PyStringObject *self, PyObject *args) int trans_table[256]; PyObject *tableobj, *delobj = NULL; - if (!PyArg_ParseTuple(args, "O|O:translate", + if (!PyArg_UnpackTuple(args, "translate", 1, 2, &tableobj, &delobj)) return NULL; |