(paramstyle, positional)
| 715 | if check_param_order and getattr(c, "params", None): |
| 716 | |
| 717 | def get_dialect(paramstyle, positional): |
| 718 | cp = copy(dialect) |
| 719 | cp.paramstyle = paramstyle |
| 720 | cp.positional = positional |
| 721 | return cp |
| 722 | |
| 723 | pyformat_dialect = get_dialect("pyformat", False) |
| 724 | pyformat_c = clause.compile(dialect=pyformat_dialect, **kw) |
no outgoing calls
no test coverage detected