commit | df8a8f768d929b56e43c42299064e7bcaebee4c7 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Wed May 04 14:40:53 2011 +0300 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Wed May 04 14:40:53 2011 +0300 |
tree | b3295fda05fda171dcdeec204249a88922b79809 | |
parent | 1602ec109b8f4a9b2e015359e3674d6e5bb8f07c [diff] [blame] |
#11982: fix json.loads('""') to return u'' rather than ''.
diff --git a/Misc/NEWS b/Misc/NEWS index b14a6cb..743f10a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -77,6 +77,8 @@ Library ------- +- Issue #11982: fix json.loads('""') to return u'' rather than ''. + - Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.