()
| 20 | |
| 21 | |
| 22 | def _fns_in_deterministic_order(): |
| 23 | reg = _registry["_default"] |
| 24 | for key in sorted(reg): |
| 25 | cls = reg[key] |
| 26 | if cls is ReturnTypeFromArgs or cls is ReturnTypeFromOptionalArgs: |
| 27 | continue |
| 28 | yield key, cls |
| 29 | |
| 30 | |
| 31 | def process_functions(filename: str, cmd: code_writer_cmd) -> str: |