(spec, required=True)
| 725 | |
| 726 | |
| 727 | def _KeywordOnlyArguments(spec, required=True): |
| 728 | return (flag for flag in spec.kwonlyargs |
| 729 | if required != (flag in spec.kwonlydefaults)) |
| 730 | |
| 731 | |
| 732 | def _GetCallableAvailabilityLines(spec): |
no outgoing calls
no test coverage detected