We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e59296 commit 258fca7Copy full SHA for 258fca7
mypy/stubtest.py
@@ -1721,7 +1721,9 @@ def get_importable_stdlib_modules() -> set[str]:
1721
# and we're unlikely to ever add stubs for idlelib in typeshed
1722
# (see discussion in https://github.com/python/typeshed/pull/9193)
1723
#
1724
- # test.* modules do weird things like raising unraisable exceptions in __del__ methods
+ # test.* modules do weird things like raising exceptions in __del__ methods,
1725
+ # leading to unraisable exceptions being logged to the terminal
1726
+ # as a warning at the end of the stubtest run
1727
if (
1728
submodule_name.endswith(".__main__")
1729
or submodule_name.startswith("idlelib.")
0 commit comments