[pypy-commit] pypy default: Kill outdated comments

arigo pypy.commits at gmail.com
Thu Mar 31 04:12:04 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r83450:2f0cad6d0069
Date: 2016-03-31 10:11 +0200
http://bitbucket.org/pypy/pypy/changeset/2f0cad6d0069/

Log:	Kill outdated comments

diff --git a/pypy/interpreter/error.py b/pypy/interpreter/error.py
--- a/pypy/interpreter/error.py
+++ b/pypy/interpreter/error.py
@@ -277,19 +277,12 @@
         raise NotImplementedError
 
     def get_traceback(self):
-        """Calling this marks the PyTraceback as escaped, i.e. it becomes
-        accessible and inspectable by app-level Python code.
+        """Get the PyTraceback object, for app-level Python code.
         """
         return self._application_traceback
 
     def set_traceback(self, traceback):
-        """Set the current traceback.  It should either be a traceback
-        pointing to some already-escaped frame, or a traceback for the
-        current frame.  To support the latter case we do not mark the
-        frame as escaped.  The idea is that it will be marked as escaping
-        only if the exception really propagates out of this frame, by
-        executioncontext.leave() being called with got_exception=True.
-        """
+        """Set the current traceback."""
         self._application_traceback = traceback
 
 


More information about the pypy-commit mailing list