From 5ab8381471d55d3e966db4987942ec34665b44fa Mon Sep 17 00:00:00 2001 From: killcerr Date: Sat, 31 Jan 2026 00:41:20 +0800 Subject: [PATCH] fix #440 --- tests/280_exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/280_exception.py b/tests/280_exception.py index 2ef09218..0b12ada1 100644 --- a/tests/280_exception.py +++ b/tests/280_exception.py @@ -212,7 +212,7 @@ try: except (ZeroDivisionError, 1) as e: assert type(e) == ZeroDivisionError except Exception as e: - print(e) + assert type(e) == TypeError """ # finally, only