]> granicus.if.org Git - python/commit
bpo-30243: Fixed the possibility of a crash in _json. (#1420)
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 5 May 2017 07:08:49 +0000 (10:08 +0300)
committerGitHub <noreply@github.com>
Fri, 5 May 2017 07:08:49 +0000 (10:08 +0300)
commit76a3e51a403bc84ed536921866c86dd7d07aaa7e
tree0cfc6ca2cd2da36730d15d6b9c5d7ffaac955abd
parent898ff03e1e7925ecde3da66327d3cdc7e07625ba
bpo-30243: Fixed the possibility of a crash in _json. (#1420)

It was possible to get a core dump by using uninitialized
_json objects. Now __new__ methods create initialized objects.
__init__ methods are removed.
Misc/NEWS
Modules/_json.c