diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2023-06-26 18:35:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 18:35:53 (GMT) |
commit | d3af83b9342457d8b24476baeb799f7506ff04f3 (patch) | |
tree | 39fb799db36fbd6184ca4d00b561a9643afe5485 /Doc/whatsnew | |
parent | 512f299e557f4ab60768d36cee9968bd92116367 (diff) | |
download | cpython-d3af83b9342457d8b24476baeb799f7506ff04f3.zip cpython-d3af83b9342457d8b24476baeb799f7506ff04f3.tar.gz cpython-d3af83b9342457d8b24476baeb799f7506ff04f3.tar.bz2 |
Revert "GH-96145: Add AttrDict to JSON module for use with object_hook (#96146)" (#105948)
This reverts commit 1f0eafa844bf5a380603d55e8d4b42d8c2a3439d.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index d8a2360..b6382e7 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -593,14 +593,6 @@ itertools tuples where the last batch may be shorter than the rest. (Contributed by Raymond Hettinger in :gh:`98363`.) -json ----- - -* Added :class:`json.AttrDict` for use with ``object_hook`` in :func:`json.load` - or :func:`json.loads`. This is a subclass of :class:`dict` that also supports - attribute style dotted access. - (Contributed by Raymond Hettinger in :gh:`96145`.) - math ---- |