Lines Matching defs:times
1995 "utime($module, /, path, times=None, *, ns=<unrepresentable>,\n"
2005 "If times is not None, it must be a tuple (atime, mtime);\n"
2010 "If times is None and ns is unspecified, utime uses the current time.\n"
2011 "Specifying tuples for both times and ns is an error.\n"
2027 os_utime_impl(PyObject *module, path_t *path, PyObject *times, PyObject *ns,
2034 static const char * const _keywords[] = {"path", "times", "ns", "dir_fd", "follow_symlinks", NULL};
2039 PyObject *times = Py_None;
2055 times = args[1];
2083 return_value = os_utime_impl(module, &path, times, ns, dir_fd, follow_symlinks);
4342 "times($module, /)\n"
4352 {"times", (PyCFunction)os_times, METH_NOARGS, os_times__doc__},