diff options
author | Larry Hastings <larry@hastings.org> | 2014-10-13 09:39:41 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2014-10-13 09:39:41 (GMT) |
commit | dfbeb160de829d16d3668dec5bc902a31ad25835 (patch) | |
tree | c5389a8396acbab2ec6ac82350405d786aaa3444 /Objects/bytesobject.c | |
parent | 6f3bdc94848d8c99ad2b7eb79e90ddb6e9f602c6 (diff) | |
download | cpython-dfbeb160de829d16d3668dec5bc902a31ad25835.zip cpython-dfbeb160de829d16d3668dec5bc902a31ad25835.tar.gz cpython-dfbeb160de829d16d3668dec5bc902a31ad25835.tar.bz2 |
Issue #22615: Argument Clinic now supports the "type" argument for the
int converter. This permits using the int converter with enums and
typedefs.
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r-- | Objects/bytesobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index ff99f93..6dc9f13 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -1819,7 +1819,7 @@ exit: static PyObject * bytes_translate_impl(PyBytesObject *self, PyObject *table, int group_right_1, PyObject *deletechars) -/*[clinic end generated code: output=f0f29a57f41df5d8 input=a90fad893c3c88d7]*/ +/*[clinic end generated code: output=f0f29a57f41df5d8 input=d8fa5519d7cc4be7]*/ { char *input, *output; const char *table_chars; |