Author: Philip Jenvey <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to