make assigning to a bytes literal a syntax error (closes #11506)
diff --git a/Python/ast.c b/Python/ast.c
index 590bc90..d97e951 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -469,6 +469,7 @@
         case Set_kind:
         case Num_kind:
         case Str_kind:
+        case Bytes_kind:
             expr_name = "literal";
             break;
         case Ellipsis_kind: