31:744cd0b4b8cd | 32:01f04fbc1842 |
---|---|
2 | 2 |
3 import sys, threading | 3 import sys, threading |
4 | 4 |
5 try: | 5 try: |
6 # Use the C extension code when we can, for speed. | 6 # Use the C extension code when we can, for speed. |
7 from coverage.tracer import Tracer | 7 from .tracer import Tracer |
8 except ImportError: | 8 except ImportError: |
9 # Couldn't import the C extension, maybe it isn't built. | 9 # Couldn't import the C extension, maybe it isn't built. |
10 Tracer = None | 10 Tracer = None |
11 | 11 |
12 | 12 |