(m)
| 2313 | self._bindparams: Dict[str, BindParameter[Any]] = {} |
| 2314 | |
| 2315 | def repl(m): |
| 2316 | self._bindparams[m.group(1)] = BindParameter(m.group(1)) |
| 2317 | return ":%s" % m.group(1) |
| 2318 | |
| 2319 | # scan the string and search for bind parameter names, add them |
| 2320 | # to the list of bindparams |
nothing calls this directly
no test coverage detected