(self, node)
| 261 | n_classdefco1 = n_classdefco2 = except_cond1 = except_cond2 = table_r_node |
| 262 | |
| 263 | def n_pass(self, node): |
| 264 | start = len(self.f.getvalue()) + len(self.indent) |
| 265 | self.set_pos_info(node, start, start + len("pass")) |
| 266 | self.default(node) |
| 267 | |
| 268 | def n_try_except(self, node): |
| 269 | # Note: we could also do this via modifying the |
nothing calls this directly
no test coverage detected