#17143: fix a missing import in the trace module. Initial patch by Berker Peksag.

This commit is contained in:
Ezio Melotti 2013-02-15 21:20:50 +02:00
parent 3a03d2eaef
commit 23e043fdcd
3 changed files with 49 additions and 0 deletions

View file

@ -58,6 +58,7 @@ import inspect
import gc
import dis
import pickle
from warnings import warn as _warn
try:
from time import monotonic as _time
except ImportError: