aboutsummaryrefslogtreecommitdiff
path: root/tests/cpydiff/core_import_prereg.py
blob: 4a712178212744e53bc75bf4440cc31a6e7b1a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
categories: Core,import
description: Failed to load modules are still registered as loaded
cause: To make module handling more efficient, it's not wrapped with exception handling.
workaround: Test modules before production use; during development, use ``del sys.modules["name"]``, or just soft or hard reset the board.
"""
import sys

try:
    from modules import foo
except NameError as e:
    print(e)
try:
    from modules import foo
    print('Should not get here')
except NameError as e:
    print(e)