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
582b1907
Commit
582b1907
authored
6 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: Add checks for stream objects in print() and sys.print_exception().
parent
2c8d130f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
py/modbuiltins.c
+1
-1
1 addition, 1 deletion
py/modbuiltins.c
py/modsys.c
+2
-1
2 additions, 1 deletion
py/modsys.c
with
3 additions
and
2 deletions
py/modbuiltins.c
+
1
−
1
View file @
582b1907
...
...
@@ -386,7 +386,7 @@ STATIC mp_obj_t mp_builtin_print(size_t n_args, const mp_obj_t *pos_args, mp_map
mp_arg_parse_all
(
0
,
NULL
,
kw_args
,
MP_ARRAY_SIZE
(
allowed_args
),
allowed_args
,
u
.
args
);
#if MICROPY_PY_IO && MICROPY_PY_SYS_STDFILES
// TODO file may not be a concrete object (eg it could be a small-int)
mp_get_stream_raise
(
u
.
args
[
ARG_file
].
u_obj
,
MP_STREAM_OP_WRITE
);
mp_print_t
print
=
{
MP_OBJ_TO_PTR
(
u
.
args
[
ARG_file
].
u_obj
),
mp_stream_write_adaptor
};
#endif
...
...
This diff is collapsed.
Click to expand it.
py/modsys.c
+
2
−
1
View file @
582b1907
...
...
@@ -106,7 +106,8 @@ STATIC mp_obj_t mp_sys_print_exception(size_t n_args, const mp_obj_t *args) {
#if MICROPY_PY_IO && MICROPY_PY_SYS_STDFILES
void
*
stream_obj
=
&
mp_sys_stdout_obj
;
if
(
n_args
>
1
)
{
stream_obj
=
MP_OBJ_TO_PTR
(
args
[
1
]);
// XXX may fail
mp_get_stream_raise
(
args
[
1
],
MP_STREAM_OP_WRITE
);
stream_obj
=
MP_OBJ_TO_PTR
(
args
[
1
]);
}
mp_print_t
print
=
{
stream_obj
,
mp_stream_write_adaptor
};
...
...
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