(self, path)
| 781 | # contents of the matching .py file, or None if no source |
| 782 | # is available. |
| 783 | def _get_pyc_source(self, path): |
| 784 | # strip 'c' or 'o' from *.py[co] |
| 785 | assert path[-1:] in ('c', 'o') |
| 786 | path = path[:-1] |
| 787 | |
| 788 | try: |
| 789 | toc_entry = self._get_files()[path] |
| 790 | except KeyError: |
| 791 | return None |
| 792 | else: |
| 793 | return _get_data(self.archive, toc_entry) |
| 794 | |
| 795 | |
| 796 | # Get the code object associated with the module specified by |
no test coverage detected
searching dependent graphs…