(self)
| 711 | self.adaptive = adaptive |
| 712 | |
| 713 | def __iter__(self): |
| 714 | co = self.codeobj |
| 715 | return _get_instructions_bytes(_get_code_array(co, self.adaptive), |
| 716 | co._varname_from_oparg, |
| 717 | co.co_names, co.co_consts, |
| 718 | self._linestarts, |
| 719 | line_offset=self._line_offset, |
| 720 | exception_entries=self.exception_entries, |
| 721 | co_positions=co.co_positions(), |
| 722 | show_caches=self.show_caches) |
| 723 | |
| 724 | def __repr__(self): |
| 725 | return "{}({!r})".format(self.__class__.__name__, |
nothing calls this directly
no test coverage detected