endorse new test output
This commit is contained in:
parent
94b89b7e57
commit
d766795c58
|
@ -3,4 +3,4 @@
|
||||||
[Errno error: details
|
[Errno error: details
|
||||||
( , 'details', 'more details')
|
( , 'details', 'more details')
|
||||||
9999
|
9999
|
||||||
uerrno
|
errno
|
||||||
|
|
|
@ -4,7 +4,7 @@ import micropython
|
||||||
# mp_obj_new_exception_msg_varg (exception requires decompression at raise-time to format)
|
# mp_obj_new_exception_msg_varg (exception requires decompression at raise-time to format)
|
||||||
# mp_obj_new_exception_msg (decompression can be deferred)
|
# mp_obj_new_exception_msg (decompression can be deferred)
|
||||||
|
|
||||||
# NameError uses mp_obj_new_exception_msg_varg for NameError("name '%q' isn't defined")
|
# NameError uses mp_obj_new_exception_msg_varg for NameError("name '%q' is not defined")
|
||||||
# `raise 0` uses mp_obj_new_exception_msg for TypeError("exceptions must derive from BaseException")
|
# `raise 0` uses mp_obj_new_exception_msg for TypeError("exceptions must derive from BaseException")
|
||||||
|
|
||||||
# Tests that deferred decompression works both via print(e) and accessing the message directly via e.args.
|
# Tests that deferred decompression works both via print(e) and accessing the message directly via e.args.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
NameError name 'name' isn't defined
|
NameError name 'name' is not defined
|
||||||
TypeError exceptions must derive from BaseException
|
TypeError exceptions must derive from BaseException
|
||||||
name 'name' isn't defined
|
name 'name' is not defined
|
||||||
exceptions must derive from BaseException
|
exceptions must derive from BaseException
|
||||||
NameError
|
NameError
|
||||||
TypeError
|
TypeError
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
NameError name 'name' isn't defined
|
NameError name 'name' is not defined
|
||||||
TypeError exceptions must derive from BaseException
|
TypeError exceptions must derive from BaseException
|
||||||
name 'name' isn't defined
|
name 'name' is not defined
|
||||||
exceptions must derive from BaseException
|
exceptions must derive from BaseException
|
||||||
|
|
Loading…
Reference in New Issue