[pypy-commit] pypy py3.5: rename args

arigo pypy.commits at gmail.com
Sun Jul 16 08:09:28 EDT 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r91891:f6faa2c5c765
Date: 2017-07-16 14:08 +0200
http://bitbucket.org/pypy/pypy/changeset/f6faa2c5c765/

Log:	rename args

diff --git a/pypy/module/_vmprof/interp_vmprof.py b/pypy/module/_vmprof/interp_vmprof.py
--- a/pypy/module/_vmprof/interp_vmprof.py
+++ b/pypy/module/_vmprof/interp_vmprof.py
@@ -15,9 +15,9 @@
 
 
 class __extend__(PyFrame):
-    def execute_frame(self, w_inputvalue=None, operr=None):
+    def execute_frame(self, in_generator=None, w_arg_or_err=None):
         # indirection for the optional arguments
-        return my_execute_frame(self, w_inputvalue, operr)
+        return my_execute_frame(self, in_generator, w_arg_or_err)
 
 
 def _safe(s):


More information about the pypy-commit mailing list