[pypy-commit] pypy default: typo

arigo noreply at buildbot.pypy.org
Thu Feb 16 10:09:58 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r52540:b0a6accd6d37
Date: 2012-02-16 09:21 +0100
http://bitbucket.org/pypy/pypy/changeset/b0a6accd6d37/

Log:	typo

diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py
--- a/pypy/interpreter/pyframe.py
+++ b/pypy/interpreter/pyframe.py
@@ -143,8 +143,8 @@
     def execute_frame(self, w_inputvalue=None, operr=None):
         """Execute this frame.  Main entry point to the interpreter.
         The optional arguments are there to handle a generator's frame:
-        w_inputvalue is for generator.send()) and operr is for
-        generator.throw()).
+        w_inputvalue is for generator.send() and operr is for
+        generator.throw().
         """
         # the following 'assert' is an annotation hint: it hides from
         # the annotator all methods that are defined in PyFrame but


More information about the pypy-commit mailing list