From b5bb4700a7d10bdd02697b30d6355504e8695b57 Mon Sep 17 00:00:00 2001
From: Julien Palard <julien@palard.fr>
Date: Sun, 3 Nov 2024 14:59:57 +0100
Subject: [PATCH] Things that are disallowed, too.
---
README.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 7e4d516..66e14ac 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,8 @@ Develop code with Python programming language, without following features:
- calls of builtin functions except [`int`, `list`, `dict`, `bool`, `str`, `float`, `tuple`, `type`],
- calls of methods (eg. `my_list.append()`),
- `try` clauses,
+- `del` keyword,
+- `match` and `case` statements,
- `break` and `continue` statements,
- names (variables or functions) with builtin names or trailing underscore (eg. `my_var_`),
- `for` loop,
@@ -23,7 +25,8 @@ Develop code with Python programming language, without following features:
- `else` statements of `while` loop,
- `global` statements,
- `nonlocal` statements,
-- following operators on list: [`+`, `+=`, `==`, `>=`, `<=`, `>`, `<`, `!=`, `*=`],
+- following operators on lists, tuples, and strings: [`+`, `+=`, `==`, `>=`, `<=`, `>`, `<`, `!=`, `*=`],
+- all operators on `dict`,
- 3 arg form of `type`,
- class definitions,
- `in` and `not in` operator,
--
2.45.2