Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
e104acdb
Commit
e104acdb
authored
Mar 03, 2015
by
Paul Sokolovsky
Browse files
runtime: Typo fixes in comments.
parent
72ddcfd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/runtime.c
View file @
e104acdb
...
...
@@ -585,8 +585,8 @@ mp_obj_t mp_call_method_n_kw_var(bool have_self, mp_uint_t n_args_n_kw, const mp
}
uint
n_args
=
n_args_n_kw
&
0xff
;
uint
n_kw
=
(
n_args_n_kw
>>
8
)
&
0xff
;
mp_obj_t
pos_seq
=
args
[
n_args
+
2
*
n_kw
];
// ma
p
be MP_OBJ_NULL
mp_obj_t
kw_dict
=
args
[
n_args
+
2
*
n_kw
+
1
];
// ma
p
be MP_OBJ_NULL
mp_obj_t
pos_seq
=
args
[
n_args
+
2
*
n_kw
];
// ma
y
be MP_OBJ_NULL
mp_obj_t
kw_dict
=
args
[
n_args
+
2
*
n_kw
+
1
];
// ma
y
be MP_OBJ_NULL
DEBUG_OP_printf
(
"call method var (fun=%p, self=%p, n_args=%u, n_kw=%u, args=%p, seq=%p, dict=%p)
\n
"
,
fun
,
self
,
n_args
,
n_kw
,
args
,
pos_seq
,
kw_dict
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment