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
7a4ddd24
Commit
7a4ddd24
authored
10 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
Add SystemExit exception and use it in unix/ and stmhal/ ports.
Addresses issue #598.
parent
ee3fd46f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
py/obj.h
+1
-0
1 addition, 0 deletions
py/obj.h
py/objexcept.c
+1
-1
1 addition, 1 deletion
py/objexcept.c
py/qstrdefs.h
+1
-0
1 addition, 0 deletions
py/qstrdefs.h
stmhal/main.c
+1
-2
1 addition, 2 deletions
stmhal/main.c
unix/main.c
+6
-1
6 additions, 1 deletion
unix/main.c
with
10 additions
and
4 deletions
py/obj.h
+
1
−
0
View file @
7a4ddd24
...
...
@@ -344,6 +344,7 @@ extern const mp_obj_type_t mp_type_RuntimeError;
extern
const
mp_obj_type_t
mp_type_StopIteration
;
extern
const
mp_obj_type_t
mp_type_SyntaxError
;
extern
const
mp_obj_type_t
mp_type_SystemError
;
extern
const
mp_obj_type_t
mp_type_SystemExit
;
extern
const
mp_obj_type_t
mp_type_TypeError
;
extern
const
mp_obj_type_t
mp_type_ValueError
;
extern
const
mp_obj_type_t
mp_type_ZeroDivisionError
;
...
...
This diff is collapsed.
Click to expand it.
py/objexcept.c
+
1
−
1
View file @
7a4ddd24
...
...
@@ -159,7 +159,7 @@ const mp_obj_type_t mp_type_ ## exc_name = { \
// List of all exceptions, arranged as in the table at:
// http://docs.python.org/3.3/library/exceptions.html
MP_DEFINE_EXCEPTION_BASE
(
BaseException
)
//
MP_DEFINE_EXCEPTION(SystemExit, BaseException)
MP_DEFINE_EXCEPTION
(
SystemExit
,
BaseException
)
//MP_DEFINE_EXCEPTION(KeyboardInterrupt, BaseException)
MP_DEFINE_EXCEPTION
(
GeneratorExit
,
BaseException
)
MP_DEFINE_EXCEPTION
(
Exception
,
BaseException
)
...
...
This diff is collapsed.
Click to expand it.
py/qstrdefs.h
+
1
−
0
View file @
7a4ddd24
...
...
@@ -102,6 +102,7 @@ Q(OverflowError)
Q
(
RuntimeError
)
Q
(
SyntaxError
)
Q
(
SystemError
)
Q
(
SystemExit
)
Q
(
TypeError
)
Q
(
UnboundLocalError
)
Q
(
ValueError
)
...
...
This diff is collapsed.
Click to expand it.
stmhal/main.c
+
1
−
2
View file @
7a4ddd24
...
...
@@ -556,7 +556,6 @@ STATIC NORETURN mp_obj_t mp_sys_exit(uint n_args, const mp_obj_t *args) {
if
(
n_args
>
0
)
{
rc
=
mp_obj_get_int
(
args
[
0
]);
}
nlr_raise
(
mp_obj_new_exception_msg_varg
(
&
mp_type_NotImplementedError
,
"sys.exit(%d) called, is not fully implemented"
,
rc
));
nlr_raise
(
mp_obj_new_exception_arg1
(
&
mp_type_SystemExit
,
mp_obj_new_int
(
rc
)));
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
mp_sys_exit_obj
,
0
,
1
,
mp_sys_exit
);
This diff is collapsed.
Click to expand it.
unix/main.c
+
6
−
1
View file @
7a4ddd24
...
...
@@ -123,6 +123,11 @@ STATIC int execute_from_lexer(mp_lexer_t *lex, mp_parse_input_kind_t input_kind,
return
0
;
}
else
{
// uncaught exception
// check for SystemExit
mp_obj_t
exc
=
(
mp_obj_t
)
nlr
.
ret_val
;
if
(
mp_obj_is_subclass_fast
(
mp_obj_get_type
(
exc
),
&
mp_type_SystemExit
))
{
exit
(
mp_obj_get_int
(
mp_obj_exception_get_value
(
exc
)));
}
mp_obj_print_exception
((
mp_obj_t
)
nlr
.
ret_val
);
return
1
;
}
...
...
@@ -383,7 +388,7 @@ STATIC mp_obj_t mp_sys_exit(uint n_args, const mp_obj_t *args) {
if
(
n_args
>
0
)
{
rc
=
mp_obj_get_int
(
args
[
0
]);
}
exi
t
(
rc
);
nlr_raise
(
mp_obj_new_exception_arg1
(
&
mp_type_SystemExit
,
mp_obj_new_in
t
(
rc
)
))
;
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
mp_sys_exit_obj
,
0
,
1
,
mp_sys_exit
);
...
...
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