summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-07-16 22:17:15 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-07-16 22:17:15 (GMT)
commitbdf630c4a7e01141b0253a19c6cfc05a2dfc4e1b (patch)
treef946e854f2e8ce5e3ade4a0f12e13d029308ca2f /Python
parent6684bdf73dfb53d666ce9609cb4ecad3f020d006 (diff)
downloadcpython-bdf630c4a7e01141b0253a19c6cfc05a2dfc4e1b.zip
cpython-bdf630c4a7e01141b0253a19c6cfc05a2dfc4e1b.tar.gz
cpython-bdf630c4a7e01141b0253a19c6cfc05a2dfc4e1b.tar.bz2
Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError)
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-ast.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index 744e640..71420c5 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -7188,7 +7188,8 @@ PyInit__ast(void)
PyObject* PyAST_mod2obj(mod_ty t)
{
- init_types();
+ if (!init_types())
+ return NULL;
return ast2obj_mod(t);
}
@@ -7202,7 +7203,8 @@ mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
int isinstance;
assert(0 <= mode && mode <= 2);
- init_types();
+ if (!init_types())
+ return NULL;
isinstance = PyObject_IsInstance(ast, req_type[mode]);
if (isinstance == -1)
@@ -7220,7 +7222,8 @@ mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
int PyAST_Check(PyObject* obj)
{
- init_types();
+ if (!init_types())
+ return -1;
return PyObject_IsInstance(obj, (PyObject*)&AST_type);
}