diff options
author | Damien George <damien.p.george@gmail.com> | 2013-12-30 22:32:17 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2013-12-30 22:32:17 +0000 |
commit | 6baf76e28b17055fc6e5a6c9560e756d32eaad5d (patch) | |
tree | f4245858b6755d6731a7ec6c9f0a6fc49901eb5b /py/scope.c | |
parent | 8cc96a35e532ef999e5a3739deeb44f51a80744b (diff) |
py: make closures work.
Diffstat (limited to 'py/scope.c')
-rw-r--r-- | py/scope.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/scope.c b/py/scope.c index 38ea5a9e2..5d97393ae 100644 --- a/py/scope.c +++ b/py/scope.c @@ -52,7 +52,6 @@ scope_t *scope_new(scope_kind_t kind, mp_parse_node_t pn, uint unique_code_id, u scope->num_dict_params = 0; */ scope->num_locals = 0; - scope->num_cells = 0; scope->unique_code_id = unique_code_id; scope->emit_options = emit_options; |