Browse Source

remove dead code (GH-14104)

default case ought to handle the "unexpected".
pull/14187/head
David Carlier 7 years ago
committed by Inada Naoki
parent
commit
9bbece9d7a
  1. 3
      Python/ast.c

3
Python/ast.c

@ -3684,9 +3684,6 @@ alias_for_import_name(struct compiling *c, const node *n, int store)
"unexpected import name: %d", TYPE(n)); "unexpected import name: %d", TYPE(n));
return NULL; return NULL;
} }
PyErr_SetString(PyExc_SystemError, "unhandled import name condition");
return NULL;
} }
static stmt_ty static stmt_ty

Loading…
Cancel
Save