sort descriptors by prefixes, defined as the concatenation of all simple strings in the descriptor; this works out to just the leading strings.
(sh)
| 916 | |
| 917 | |
| 918 | def descsort_key(sh): |
| 919 | """ |
| 920 | sort descriptors by prefixes, defined as the concatenation of all simple |
| 921 | strings in the descriptor; this works out to just the leading strings. |
| 922 | """ |
| 923 | return concise_sig(sh['sig']) |
| 924 | |
| 925 | |
| 926 | def parse_funcsig(sig: Sequence[Union[str, Dict[str, Any]]]) -> List[argdesc]: |
nothing calls this directly
no test coverage detected