[pypy-commit] pypy py3k: w_kw_defs is quasi-immutable

pjenvey noreply at buildbot.pypy.org
Wed Jun 18 00:56:37 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r72095:36152e49e8d9
Date: 2014-06-17 15:55 -0700
http://bitbucket.org/pypy/pypy/changeset/36152e49e8d9/

Log:	w_kw_defs is quasi-immutable

diff --git a/pypy/interpreter/function.py b/pypy/interpreter/function.py
--- a/pypy/interpreter/function.py
+++ b/pypy/interpreter/function.py
@@ -32,7 +32,8 @@
                           'w_func_globals?',
                           'closure?[*]',
                           'defs_w?[*]',
-                          'name?']
+                          'name?',
+                          'w_kw_defs?']
 
     def __init__(self, space, code, w_globals=None, defs_w=[], w_kw_defs=None,
                  closure=None, w_ann=None, forcename=None):


More information about the pypy-commit mailing list