(self, name_style="class")
| 133 | """ |
| 134 | |
| 135 | def __init__(self, name_style="class"): |
| 136 | assert name_style in ["full", "class", "func"] |
| 137 | self.name_style = name_style |
| 138 | |
| 139 | def get_name(self, function, instance): |
| 140 | is_method = function.__code__.co_argcount > 0 and function.__code__.co_varnames[0] == "self" |
nothing calls this directly
no outgoing calls
no test coverage detected