mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Forward port r70471: Add object_pairs_hook. Issue 5381.
This commit is contained in:
parent
e5925773ba
commit
0ad98d8509
4 changed files with 54 additions and 8 deletions
|
@ -1,7 +1,9 @@
|
|||
import decimal
|
||||
from unittest import TestCase
|
||||
from io import StringIO
|
||||
|
||||
import json
|
||||
from collections import OrderedDict
|
||||
|
||||
class TestDecode(TestCase):
|
||||
def test_decimal(self):
|
||||
|
@ -13,3 +15,20 @@ class TestDecode(TestCase):
|
|||
rval = json.loads('1', parse_int=float)
|
||||
self.assert_(isinstance(rval, float))
|
||||
self.assertEquals(rval, 1.0)
|
||||
|
||||
def test_object_pairs_hook(self):
|
||||
s = '{"xkd":1, "kcw":2, "art":3, "hxm":4, "qrt":5, "pad":6, "hoy":7}'
|
||||
p = [("xkd", 1), ("kcw", 2), ("art", 3), ("hxm", 4),
|
||||
("qrt", 5), ("pad", 6), ("hoy", 7)]
|
||||
self.assertEqual(json.loads(s), eval(s))
|
||||
self.assertEqual(json.loads(s, object_pairs_hook = lambda x: x), p)
|
||||
self.assertEqual(json.load(StringIO(s),
|
||||
object_pairs_hook=lambda x: x), p)
|
||||
od = json.loads(s, object_pairs_hook = OrderedDict)
|
||||
self.assertEqual(od, OrderedDict(p))
|
||||
self.assertEqual(type(od), OrderedDict)
|
||||
# the object_pairs_hook takes priority over the object_hook
|
||||
self.assertEqual(json.loads(s,
|
||||
object_pairs_hook = OrderedDict,
|
||||
object_hook = lambda x: None),
|
||||
OrderedDict(p))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue