Lines Matching refs:given
12 getmembers() - get members of an object that satisfy a given condition
393 wrapper wrapping a function) whose code object has the given ``flag``
594 Optionally, only return members that satisfy a given predicate."""
601 satisfy a given predicate.
925 """Return the module name for a given file, or None."""
1225 """Extract the block of code at the top of the given list of lines."""
1277 """Arrange the given list of classes into a hierarchy of nested lists.
1283 for each class in the given list. Otherwise, classes using multiple
1437 'locals' is the locals dictionary of the given frame."""
1501 def _too_many(f_name, args, kwonly, varargs, defcount, given, values):
1516 kwonly_sig = (msg % ("s" if given != 1 else "", kwonly_given,
1518 raise TypeError("%s() takes %s positional argument%s but %d%s %s given" %
1519 (f_name, sig, "s" if plural else "", given, kwonly_sig,
1520 "was" if given == 1 and not kwonly_given else "were"))
2335 """Private helper: constructs Signature for the given python function."""
2974 """Constructs Signature from the given list of Parameter
3027 """Constructs Signature for the given callable object."""
3285 """ Logic for inspecting an object given at command line """