MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _fns_in_deterministic_order

Function _fns_in_deterministic_order

tools/generate_sql_functions.py:22–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

20
21
22def _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
31def process_functions(filename: str, cmd: code_writer_cmd) -> str:

Callers 1

process_functionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected