Lines Matching defs:number
23 "perform absolute or relative imports: 0 is absolute, while a positive number\n"
24 "is the number of parent directories to search relative to the current module.");
130 "bin($module, number, /)\n"
616 "hex($module, number, /)\n"
678 "Return the number of items in a container.");
706 "oct($module, number, /)\n"
895 "round($module, /, number, ndigits=None)\n"
898 "Round a number to a given precision in decimal digits.\n"
901 "the return value has the same type as the number. ndigits may be negative.");
907 builtin_round_impl(PyObject *module, PyObject *number, PyObject *ndigits);
913 static const char * const _keywords[] = {"number", "ndigits", NULL};
917 PyObject *number;
924 number = args[0];
930 return_value = builtin_round_impl(module, number, ndigits);