[pypy-svn] r69181 - pypy/branch/faster-raise/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Wed Nov 11 17:09:25 CET 2009


Author: arigo
Date: Wed Nov 11 17:09:24 2009
New Revision: 69181

Modified:
   pypy/branch/faster-raise/pypy/interpreter/error.py
Log:
Kill unused method.


Modified: pypy/branch/faster-raise/pypy/interpreter/error.py
==============================================================================
--- pypy/branch/faster-raise/pypy/interpreter/error.py	(original)
+++ pypy/branch/faster-raise/pypy/interpreter/error.py	Wed Nov 11 17:09:24 2009
@@ -73,13 +73,6 @@
         else:
             return '%s: %s' % (exc_typename, exc_value)
 
-    def getframe(self):
-        "The frame this exception was raised in, or None."
-        if self.application_traceback:
-            return self.application_traceback.frame
-        else:
-            return None
-
     def record_interpreter_traceback(self):
         """Records the current traceback inside the interpreter.
         This traceback is only useful to debug the interpreter, not the



More information about the Pypy-commit mailing list