diff options
author | Guido van Rossum <guido@python.org> | 1993-05-20 14:24:46 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-05-20 14:24:46 +0000 |
commit | 81daa32c15cfa9f05eda037916cdbfd5b4323431 (patch) | |
tree | 82d67f6db4ff6f1ae1a682f2ec4b01d075f3e405 /Python/import.c | |
parent | 25831652fd4c03323066d4cafdc0551c396a993e (diff) | |
download | cpython-git-81daa32c15cfa9f05eda037916cdbfd5b4323431.tar.gz |
Access checks now work, at least for instance data (not for methods
yet). The class is now passed to eval_code and stored in the current
frame. It is also stored in instance method objects. An "unbound"
instance method is now returned when a function is retrieved through
"classname.funcname", which when called passes the class to eval_code.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c index ec21b4c85e..395114be85 100644 --- a/Python/import.c +++ b/Python/import.c @@ -303,7 +303,7 @@ get_module(m, name, m_ret) } } } - v = eval_code(co, d, d, (object *)NULL); + v = eval_code(co, d, d, (object *)NULL, (object *)NULL); DECREF(co); return v; } @@ -422,7 +422,7 @@ init_frozen(name) return -1; if ((m = add_module(name)) == NULL || (d = getmoduledict(m)) == NULL || - (v = eval_code(co, d, d, (object *)NULL)) == NULL) { + (v = eval_code(co, d, d, (object*)NULL, (object*)NULL)) == NULL) { DECREF(co); return -1; } |