| 37 | |
| 38 | def test_column(self): |
| 39 | class MyThingy(ColumnClause): |
| 40 | inherit_cache = False |
| 41 | |
| 42 | def __init__(self, arg=None): |
| 43 | super().__init__(arg or "MYTHINGY!") |
| 44 | |
| 45 | @compiles(MyThingy) |
| 46 | def visit_thingy(thingy, compiler, **kw): |
no outgoing calls