mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
6 lines
145 B
Python
6 lines
145 B
Python
import _imp
|
|
|
|
assert _imp.is_builtin("time") == True
|
|
assert _imp.is_builtin("os") == False
|
|
assert _imp.is_builtin("not existing module") == False
|