You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
319 B
15 lines
319 B
"""
|
|
categories: Modules,json
|
|
description: JSON module does not throw exception when object is not serialisable
|
|
cause: Unknown
|
|
workaround: Unknown
|
|
"""
|
|
import json
|
|
|
|
a = bytes(x for x in range(256))
|
|
try:
|
|
z = json.dumps(a)
|
|
x = json.loads(z)
|
|
print("Should not get here")
|
|
except TypeError:
|
|
print("TypeError")
|
|
|