(flag, docstring_info, spec, short_arg)
| 168 | |
| 169 | |
| 170 | def _CreateKeywordOnlyFlagItem(flag, docstring_info, spec, short_arg): |
| 171 | return _CreateFlagItem( |
| 172 | flag, docstring_info, spec, required=flag not in spec.kwonlydefaults, |
| 173 | short_arg=short_arg) |
| 174 | |
| 175 | |
| 176 | def _GetShortFlags(flags): |
no test coverage detected