(m)
| 2766 | self._add_to_params(textclause) |
| 2767 | |
| 2768 | def do_bindparam(m): |
| 2769 | name = m.group(1) |
| 2770 | if name in textclause._bindparams: |
| 2771 | return self.process(textclause._bindparams[name], **kw) |
| 2772 | else: |
| 2773 | return self.bindparam_string(name, **kw) |
| 2774 | |
| 2775 | if not self.stack: |
| 2776 | self.isplaintext = True |
nothing calls this directly
no test coverage detected