summaryrefslogtreecommitdiff
path: root/tests/extmod/ujson_loads.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/ujson_loads.py')
-rw-r--r--tests/extmod/ujson_loads.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/extmod/ujson_loads.py b/tests/extmod/ujson_loads.py
index 75e61dacd..22f4a02c4 100644
--- a/tests/extmod/ujson_loads.py
+++ b/tests/extmod/ujson_loads.py
@@ -6,8 +6,6 @@ except:
def my_print(o):
if isinstance(o, dict):
print('sorted dict', sorted(o.items()))
- elif isinstance(o, float):
- print('%.3f' % o)
else:
print(o)
@@ -15,12 +13,7 @@ my_print(json.loads('null'))
my_print(json.loads('false'))
my_print(json.loads('true'))
my_print(json.loads('1'))
-my_print(json.loads('1.2'))
-my_print(json.loads('1e2'))
my_print(json.loads('-2'))
-my_print(json.loads('-2.3'))
-my_print(json.loads('-2e3'))
-my_print(json.loads('-2e-3'))
my_print(json.loads('"abc\\u0064e"'))
my_print(json.loads('[]'))
my_print(json.loads('[null]'))