Make bytes_repr return a string containing a b"" literal.

This commit is contained in:
Georg Brandl 2007-02-24 19:41:35 +00:00
parent fa353657f0
commit ee91be45df
4 changed files with 58 additions and 58 deletions

View file

@ -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. */