Update Python subset for kernels authored by Leon Riesebos's avatar Leon Riesebos
......@@ -15,6 +15,7 @@ The kernel code supports a subset of the *Python 3.5* language. This section hig
1. Kernels are not able to access class-private members (i.e. attributes with a double underscore name `self.__variable`) since the compiler is not able to resolve those names.
1. Kernel functions with dynamic arguments using `*args` and `**kwargs` are not supported.
1. `if` clauses in list comprehensions are not supported.
1. `with` statements are supported, but not in combination with `as`.
**Supported**
......
......