[pypy-commit] pypy default: Fix import in pdbplus.py

krono pypy.commits at gmail.com
Thu Mar 24 07:41:21 EDT 2016


Author: Tobias Pape <tobias at netshed.de>
Branch: 
Changeset: r83314:c16375b8325d
Date: 2016-03-24 12:40 +0100
http://bitbucket.org/pypy/pypy/changeset/c16375b8325d/

Log:	Fix import in pdbplus.py

diff --git a/rpython/translator/tool/pdbplus.py b/rpython/translator/tool/pdbplus.py
--- a/rpython/translator/tool/pdbplus.py
+++ b/rpython/translator/tool/pdbplus.py
@@ -172,7 +172,7 @@
 (in which case prefixing with some packages in pypy is tried (see help pypyprefixes)).
 if obj is a function or method, the localized call graph is shown;
 if obj is a class or ClassDef the class definition graph is shown"""
-        from rpython.annotator.classdef import ClassDef
+        from rpython.annotator.classdesc import ClassDef
         from rpython.translator.tool import graphpage
         translator = self.translator
         obj = self._getobj(arg)


More information about the pypy-commit mailing list