Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
72732fea
Commit
72732fea
authored
Jun 08, 2017
by
Damien George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py/persistentcode: Allow to compile with complex numbers disabled.
parent
4d2778c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
py/persistentcode.c
py/persistentcode.c
+6
-4
No files found.
py/persistentcode.c
View file @
72732fea
...
...
@@ -286,11 +286,13 @@ STATIC void save_obj(mp_print_t *print, mp_obj_t o) {
byte
obj_type
;
if
(
MP_OBJ_IS_TYPE
(
o
,
&
mp_type_int
))
{
obj_type
=
'i'
;
}
else
if
(
mp_obj_is_float
(
o
))
{
obj_type
=
'f'
;
}
else
{
assert
(
MP_OBJ_IS_TYPE
(
o
,
&
mp_type_complex
));
#if MICROPY_PY_BUILTINS_COMPLEX
}
else
if
(
MP_OBJ_IS_TYPE
(
o
,
&
mp_type_complex
))
{
obj_type
=
'c'
;
#endif
}
else
{
assert
(
mp_obj_is_float
(
o
));
obj_type
=
'f'
;
}
vstr_t
vstr
;
mp_print_t
pr
;
...
...
Write
Preview
Markdown
is supported
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