[pypy-commit] pypy py3.5-corowrapper: one translation fix

arigo pypy.commits at gmail.com
Sat Sep 17 15:59:26 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5-corowrapper
Changeset: r87193:c4982d46ad7b
Date: 2016-09-17 21:58 +0200
http://bitbucket.org/pypy/pypy/changeset/c4982d46ad7b/

Log:	one translation fix

diff --git a/pypy/interpreter/generator.py b/pypy/interpreter/generator.py
--- a/pypy/interpreter/generator.py
+++ b/pypy/interpreter/generator.py
@@ -519,7 +519,7 @@
 def get_printable_location_genentry(bytecode):
     return '%s <generator>' % (bytecode.get_repr(),)
 generatorentry_driver = jit.JitDriver(greens=['pycode'],
-                                      reds=['gen', 'w_arg', 'operr'],
+                                      reds=['gen', 'w_arg'],
                                       get_printable_location =
                                           get_printable_location_genentry,
                                       name='generatorentry')


More information about the pypy-commit mailing list