mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
17 lines
305 B
Python
17 lines
305 B
Python
# test calling builtin import function
|
|
|
|
# basic test
|
|
__import__('builtins')
|
|
|
|
# first arg should be a string
|
|
try:
|
|
__import__(1)
|
|
except TypeError:
|
|
print('TypeError')
|
|
|
|
# level argument should be non-negative
|
|
try:
|
|
__import__('xyz', None, None, None, -1)
|
|
except ValueError:
|
|
print('ValueError')
|