(paramstyle, positional)
| 728 | if check_param_order and getattr(c, class="st">"params", None): |
| 729 | |
| 730 | def get_dialect(paramstyle, positional): |
| 731 | cp = copy(dialect) |
| 732 | cp.paramstyle = paramstyle |
| 733 | cp.positional = positional |
| 734 | return cp |
| 735 | |
| 736 | pyformat_dialect = get_dialect(class="st">"pyformat", False) |
| 737 | pyformat_c = clause.compile(dialect=pyformat_dialect, **kw) |
no outgoing calls
no test coverage detected