With the aim of getting consistency, and removing the need to learn an additional term, replace uses of uPy/uPython with MPy/MicroPython. Rule of thumb was to use "MPy" abbreviation where "CPy" is used nearby, but the full word MicroPython otherwise. This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton <angus@redyak.com.au>
27 lines
571 B
Python
27 lines
571 B
Python
try:
|
|
from io import StringIO
|
|
import json
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
s = StringIO()
|
|
json.dump(False, s)
|
|
print(s.getvalue())
|
|
|
|
s = StringIO()
|
|
json.dump({"a": (2, [3, None])}, s)
|
|
print(s.getvalue())
|
|
|
|
# dump to a small-int not allowed
|
|
try:
|
|
json.dump(123, 1)
|
|
except (AttributeError, OSError): # CPython and MicroPython have different errors
|
|
print("Exception")
|
|
|
|
# dump to an object not allowed
|
|
try:
|
|
json.dump(123, {})
|
|
except (AttributeError, OSError): # CPython and MicroPython have different errors
|
|
print("Exception")
|