]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-38631: Avoid Py_FatalError() in readline (GH-16998)
authorVictor Stinner <vstinner@python.org>
Wed, 30 Oct 2019 15:39:27 +0000 (16:39 +0100)
committerGitHub <noreply@github.com>
Wed, 30 Oct 2019 15:39:27 +0000 (16:39 +0100)
commit1d8da61f5ad26274556e0bbce260ce292d0402a1
tree4cb8d81b4474ea507f852e9d4c87645285bdc602
parenta4ed6ed9f3779b6eda41bb65f5c09004a2b937ef
bpo-38631: Avoid Py_FatalError() in readline (GH-16998)

readline now calls PyErr_NoMemory() rather than Py_FatalError() on
memory allocation failure, when importing the module.
Modules/readline.c