diff options
author | stijn <stijn@ignitron.net> | 2020-06-18 11:19:14 +0200 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-09-04 00:10:24 +1000 |
commit | 40ad8f1666b265dafc7844d765f45cfae4b6299f (patch) | |
tree | d073a4b4f791f53d1a73c47d029bf2b49f041d5e /tests/basics/builtin_callable.py | |
parent | b0932fcf2e2f9a81abf7737ed4b2573bd9ad4a49 (diff) | |
download | micropython-40ad8f1666b265dafc7844d765f45cfae4b6299f.tar.gz micropython-40ad8f1666b265dafc7844d765f45cfae4b6299f.zip |
all: Rename "sys" module to "usys".
This is consistent with the other 'micro' modules and allows implementing
additional features in Python via e.g. micropython-lib's sys.
Note this is a breaking change (not backwards compatible) for ports which
do not enable weak links, as "import sys" must now be replaced with
"import usys".
Diffstat (limited to 'tests/basics/builtin_callable.py')
-rw-r--r-- | tests/basics/builtin_callable.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/basics/builtin_callable.py b/tests/basics/builtin_callable.py index 3ae49f004d..c0a9d0c473 100644 --- a/tests/basics/builtin_callable.py +++ b/tests/basics/builtin_callable.py @@ -7,7 +7,10 @@ print(callable([])) print(callable("dfsd")) # modules should not be callabe -import sys +try: + import usys as sys +except ImportError: + import sys print(callable(sys)) # builtins should be callable |