]> granicus.if.org Git - python/commit
time_strptime() uses PyObject_Call()
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 8 Dec 2016 23:38:53 +0000 (00:38 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 8 Dec 2016 23:38:53 +0000 (00:38 +0100)
commitdbe28d26b46adb7ed3d6731bc148fc095ff43bba
tree5266105803fd79823af0215631426eebeb284723
parent2b635971e7fedc06b8a12d467a8b717c9752f4a4
time_strptime() uses PyObject_Call()

Issue #28915: Use PyObject_Call() to pass a tuple of positional arguments,
instead of relying on _PyObject_CallMethodId() weird behaviour to unpack the
tuple.
Modules/timemodule.c