MCPcopy Index your code
hub / github.com/python/cpython / is_var_keyword

Method is_var_keyword

Tools/clinic/libclinic/function.py:229–230  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

227 return self.kind == inspect.Parameter.VAR_POSITIONAL
228
229 def is_var_keyword(self) -> bool:
230 return self.kind == inspect.Parameter.VAR_KEYWORD
231
232 def is_variable_length(self) -> bool:
233 return self.is_vararg() or self.is_var_keyword()

Callers 3

is_variable_lengthMethod · 0.95
__init__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected