From ee91be45df796b8e5721d9142a6e92e55a465451 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 24 Feb 2007 19:41:35 +0000 Subject: Make bytes_repr return a string containing a b"" literal. --- Python/symtable.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Python/symtable.c') diff --git a/Python/symtable.c b/Python/symtable.c index 5f0290afa1..1d76e0d025 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1177,7 +1177,8 @@ symtable_visit_expr(struct symtable *st, expr_ty e) break; case Num_kind: case Str_kind: - case Ellipsis_kind: + case Bytes_kind: + case Ellipsis_kind: /* Nothing to do here. */ break; /* The following exprs can be assignment targets. */ -- cgit v1.2.1