diff options
author | Raymond Hettinger <python@rcn.com> | 2010-10-31 08:00:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-10-31 08:00:16 (GMT) |
commit | b643ef8f8e92728c2a4afaaa860592e384c7178c (patch) | |
tree | 213adcc2519d529203480cf3ec7809943f3e35dd /Misc | |
parent | 6ff2a7d12166c3e6c3418fa215ba27aa31981304 (diff) | |
download | cpython-b643ef8f8e92728c2a4afaaa860592e384c7178c.zip cpython-b643ef8f8e92728c2a4afaaa860592e384c7178c.tar.gz cpython-b643ef8f8e92728c2a4afaaa860592e384c7178c.tar.bz2 |
Issue #5729: json.dumps to support using '\t' as an indent string
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -59,6 +59,9 @@ Core and Builtins Library ------- +- Issue #5729: json.dumps() now supports using a string such as '\t' + for pretty-printing multilevel objects. + - Issue #10253: FileIO leaks a file descriptor when trying to open a file for append that isn't seekable. Patch by Brian Brazil. |