Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
d47f9d5a
Commit
d47f9d5a
authored
11 years ago
by
Damien
Browse files
Options
Downloads
Patches
Plain Diff
py: add call to __init__ when instantiating class object.
parent
c1075ddc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
py/runtime.c
+31
-5
31 additions, 5 deletions
py/runtime.c
with
31 additions
and
5 deletions
py/runtime.c
+
31
−
5
View file @
d47f9d5a
...
...
@@ -1757,15 +1757,41 @@ py_obj_t rt_call_function_n(py_obj_t fun, int n_args, const py_obj_t *args) {
}
else
if
(
IS_O
(
fun
,
O_CLASS
))
{
// instantiate an instance of a class
if
(
n_args
!=
0
)
{
n_args_fun
=
0
;
goto
bad_n_args
;
}
DEBUG_OP_printf
(
"instantiate object of class %p with no args
\n
"
,
fun
);
DEBUG_OP_printf
(
"instantiate object of class %p with %d args
\n
"
,
fun
,
n_args
);
py_obj_base_t
*
o
=
m_new
(
py_obj_base_t
,
1
);
o
->
kind
=
O_OBJ
;
o
->
u_obj
.
class
=
fun
;
o
->
u_obj
.
members
=
py_map_new
(
MAP_QSTR
,
0
);
// look for __init__ function
py_obj_base_t
*
o_class
=
fun
;
py_map_elem_t
*
init_fn
=
py_qstr_map_lookup
(
o_class
->
u_class
.
locals
,
qstr_from_str_static
(
"__init__"
),
false
);
if
(
init_fn
!=
NULL
)
{
// call __init__ function
py_obj_t
init_ret
;
if
(
n_args
==
0
)
{
init_ret
=
rt_call_function_n
(
init_fn
->
value
,
1
,
(
py_obj_t
*
)
&
o
);
}
else
{
py_obj_t
*
args2
=
m_new
(
py_obj_t
,
n_args
+
1
);
memcpy
(
args2
,
args
,
n_args
*
sizeof
(
py_obj_t
));
args2
[
n_args
]
=
o
;
init_ret
=
rt_call_function_n
(
init_fn
->
value
,
n_args
+
1
,
args2
);
m_free
(
args2
);
}
if
(
init_ret
!=
py_const_none
)
{
nlr_jump
(
py_obj_new_exception_2
(
q_TypeError
,
"__init__() should return None, not '%s'"
,
py_obj_get_type_str
(
init_ret
),
NULL
));
}
}
else
{
// TODO
if
(
n_args
!=
0
)
{
n_args_fun
=
0
;
goto
bad_n_args
;
}
}
return
o
;
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment