2018-02-05 23:35:52 -05:00
|
|
|
try:
|
2022-08-18 02:57:45 -04:00
|
|
|
from io import StringIO
|
|
|
|
import json
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2018-02-05 23:35:52 -05:00
|
|
|
|
|
|
|
s = StringIO()
|
|
|
|
json.dump(False, s)
|
|
|
|
print(s.getvalue())
|
|
|
|
|
|
|
|
s = StringIO()
|
|
|
|
json.dump({"a": (2, [3, None])}, s)
|
|
|
|
print(s.getvalue())
|
2018-06-12 22:53:25 -04:00
|
|
|
|
|
|
|
# dump to a small-int not allowed
|
|
|
|
try:
|
|
|
|
json.dump(123, 1)
|
|
|
|
except (AttributeError, OSError): # CPython and uPy have different errors
|
|
|
|
print("Exception")
|
|
|
|
|
|
|
|
# dump to an object not allowed
|
|
|
|
try:
|
|
|
|
json.dump(123, {})
|
|
|
|
except (AttributeError, OSError): # CPython and uPy have different errors
|
|
|
|
print("Exception")
|