summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/symtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index fb2bb7d..3c13018 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -1539,7 +1539,7 @@ symtable_extend_namedexpr_scope(struct symtable *st, expr_ty e)
/* We should always find either a FunctionBlock, ModuleBlock or ClassBlock
and should never fall to this case
*/
- assert(0);
+ Py_UNREACHABLE();
return 0;
}