Skip to content

Commit e4cf095

Browse files
committed
unittest: Always use "raise" with an argument.
So this code can be compiled with the MicroPython native emitter, which does not support "raise" without any arguments. Signed-off-by: Damien George <[email protected]>
1 parent 0104788 commit e4cf095

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python-stdlib/unittest/manifest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
metadata(version="0.10.3")
1+
metadata(version="0.10.4")
22

33
package("unittest")

python-stdlib/unittest/unittest/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def assertRaises(self, exc, func=None, *args, **kwargs):
198198
except Exception as e:
199199
if isinstance(e, exc):
200200
return
201-
raise
201+
raise e
202202

203203
assert False, "%r not raised" % exc
204204

@@ -407,7 +407,7 @@ def run_one(test_function):
407407
current_test=(name, c), test_result=test_result, exc_info=(type(ex), ex, None)
408408
)
409409
# Uncomment to investigate failure in detail
410-
# raise
410+
# raise ex
411411
finally:
412412
__test_result__ = None
413413
__current_test__ = None

0 commit comments

Comments
 (0)