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
0c937fa2
Commit
0c937fa2
authored
May 21, 2014
by
Paul Sokolovsky
Browse files
objobject: Fix arguments to __init__().
parent
efaef6ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/objobject.c
View file @
0c937fa2
...
...
@@ -48,7 +48,7 @@ STATIC mp_obj_t object_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const
}
#if MICROPY_CPYTHON_COMPAT
STATIC
mp_obj_t
object___init__
(
uint
n_args
,
const
mp_obj_t
*
args
)
{
STATIC
mp_obj_t
object___init__
(
mp_obj_t
self
)
{
return
mp_const_none
;
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_1
(
object___init___obj
,
object___init__
);
...
...
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