Lines Matching defs:which
1455 "getpriority($module, /, which, who)\n"
1464 os_getpriority_impl(PyObject *module, int which, int who);
1470 static const char * const _keywords[] = {"which", "who", NULL};
1473 int which;
1480 which = _PyLong_AsInt(args[0]);
1481 if (which == -1 && PyErr_Occurred()) {
1488 return_value = os_getpriority_impl(module, which, who);
1499 "setpriority($module, /, which, who, priority)\n"
1508 os_setpriority_impl(PyObject *module, int which, int who, int priority);
1514 static const char * const _keywords[] = {"which", "who", "priority", NULL};
1517 int which;
1525 which = _PyLong_AsInt(args[0]);
1526 if (which == -1 && PyErr_Occurred()) {
1537 return_value = os_setpriority_impl(module, which, who, priority);
3116 "Prepare the tty of which fd is a file descriptor for a new login session.\n"
3266 "Returns a list of groups to which a user belongs.\n"
3320 "Returns a list of groups to which a user belongs.\n"
3398 "the groups of which the specified username is a member, plus the specified\n"
3444 "the groups of which the specified username is a member, plus the specified\n"
4208 "Return a string representing the path to which the symbolic link points.\n"
4911 "which may be less than the total capacity of all the buffers.");
5013 "specifies the file offset at which the input operation is to be performed. It\n"
5014 "will return the total number of bytes read (which can be less than the total\n"
8032 "which file descriptor should be queried.\n"
8040 "shutil.get_terminal_size is the high-level function which should\n"