Lines Matching refs:names

487         co_cellvars         tuple of names of cell variables
494 co_freevars tuple of names of free variables
499 co_names tuple of names other than arguments and function locals
502 co_varnames tuple of names of arguments and local variables"""
553 names = dir(object)
556 # add any DynamicClassAttributes to the list of names if object is a class;
563 names.append(k)
568 for key in names:
645 names = dir(cls)
646 # :dd any DynamicClassAttributes to the list of names;
652 names.append(k)
656 for name in names:
1309 'args' is the list of argument names. Keyword-only arguments are
1310 appended. 'varargs' and 'varkw' are the names of the * and **
1315 names = co.co_varnames
1318 args = list(names[:nargs])
1319 kwonlyargs = list(names[nargs:nargs+nkwargs])
1337 """Get the names and default values of a callable object's parameters.
1341 'args' is a list of the parameter names.
1342 'varargs' and 'varkw' are the names of the * and ** parameters or None.
1344 'kwonlyargs' is a list of keyword-only parameter names.
1345 'kwonlydefaults' is a dictionary mapping names from kwonlyargs to defaults.
1346 'annotations' is a dictionary mapping parameter names to annotations.
1435 'args' is a list of the argument names.
1436 'varargs' and 'varkw' are the names of the * and ** arguments or None.
1471 that are called to turn names and values into strings. The ninth
1486 names = [repr(name) for name in argnames if name not in values]
1487 missing = len(names)
1489 s = names[0]
1491 s = "{} and {}".format(*names)
1493 tail = ", {} and {}".format(*names[-2:])
1494 del names[-2:]
1495 s = ", ".join(names) + tail
1525 A dict is returned, with keys the function argument names (including the
1526 names of the * and ** arguments, if any), and values the respective bound
1590 set of unbound names that could not be resolved is also provided.
1885 A dict is returned, with the keys the local variable names and values the
1927 A dict is returned, with the keys the local variable names and values the
2819 An ordered mutable mapping of parameters' names to arguments' values.
2950 An ordered mapping of parameters' names to the corresponding