[pypy-commit] pypy py3k: unneeded import

pjenvey noreply at buildbot.pypy.org
Wed Jun 18 23:23:23 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r72099:6f7eee4959af
Date: 2014-06-18 14:20 -0700
http://bitbucket.org/pypy/pypy/changeset/6f7eee4959af/

Log:	unneeded import

diff --git a/pypy/module/exceptions/interp_exceptions.py b/pypy/module/exceptions/interp_exceptions.py
--- a/pypy/module/exceptions/interp_exceptions.py
+++ b/pypy/module/exceptions/interp_exceptions.py
@@ -187,7 +187,6 @@
         self.w_context = w_newcontext
 
     def descr_gettraceback(self, space):
-        from pypy.interpreter.pytraceback import PyTraceback
         tb = self.w_traceback
         if tb is not None and isinstance(tb, PyTraceback):
             # tb escapes to app level (see OperationError.get_traceback)


More information about the pypy-commit mailing list