diff options
author | Brett Cannon <bcannon@gmail.com> | 2011-02-04 20:30:30 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2011-02-04 20:30:30 +0000 |
commit | 35dfa0652eb344ce6134a1ba6d3318189d9fc687 (patch) | |
tree | 87adbe6adbb69e94e340394167ca360b2b52b927 /Misc | |
parent | d3a960668ce18803288bbbe8be9c5d6cbc661b10 (diff) | |
download | cpython-35dfa0652eb344ce6134a1ba6d3318189d9fc687.tar.gz |
Merged revisions 88337 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88337 | brett.cannon | 2011-02-04 12:24:02 -0800 (Fri, 04 Feb 2011) | 5 lines
There was a possibility that the initialization of _sqlite, when it failed,
would lead to a decref of a NULL.
Fixes issue #11110.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -37,6 +37,8 @@ Core and Builtins Library ------- +- Issue #11110: Fix _sqlite to not deref a NULL when module creation fails. + - Issue #11089: Fix performance issue limiting the use of ConfigParser() with large config files. |