commit | 76a3e51a403bc84ed536921866c86dd7d07aaa7e | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Fri May 05 10:08:49 2017 +0300 |
committer | GitHub <noreply@github.com> | Fri May 05 10:08:49 2017 +0300 |
tree | 0cfc6ca2cd2da36730d15d6b9c5d7ffaac955abd | |
parent | 898ff03e1e7925ecde3da66327d3cdc7e07625ba [diff] |
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.