- Patch #1657276: Make NETLINK_DNRTMSG conditional.
-- Bug #1653736: Complain about keyword arguments to time.isoformat.
+- Bug #1653736: Fix signature of time_isoformat.
- operator.count() now raises an OverflowError when the count reaches sys.maxint.
return PyObject_CallMethod((PyObject *)self, "isoformat", "()");
}
+/* Even though this silently ignores all arguments, it cannot
+ be fixed to reject them in release25-maint */
static PyObject *
-time_isoformat(PyDateTime_Time *self, PyObject *unused)
+time_isoformat(PyDateTime_Time *self, PyObject *unused_args,
+ PyObject *unused_keywords)
{
char buf[100];
PyObject *result;
static PyMethodDef time_methods[] = {
- {"isoformat", (PyCFunction)time_isoformat, METH_NOARGS,
+ {"isoformat", (PyCFunction)time_isoformat, METH_KEYWORDS,
PyDoc_STR("Return string in ISO 8601 format, HH:MM:SS[.mmmmmm]"
"[+HH:MM].")},