Update Python subset for kernels authored by Leon Riesebos's avatar Leon Riesebos
......@@ -28,7 +28,7 @@ The kernel code supports a subset of the *Python 3.5* language. This section hig
1. RPC functions can have arguments with default values that are not supported in ARTIQ or do not obey ARTIQ typing (e.g. `def foo(v: TFloat = None)` is valid).
1. Since ARTIQ 6, element-wise operations are supported using the `TArray` type (equivalent to the NumPy array).
1. Since ARTIQ 6, assert statements using the `assert` keyword are supported and raise the expected exception type.
1. Since ARTIQ 6, trigonometric and other common math functions from NumPy are now available on the core device (e.g. `numpy.sin`).
1. Since ARTIQ 6, trigonometric and other common math functions from NumPy are now available on the core device (e.g. `numpy.sin`). Available functions can be found in [this compiler source file](https://github.com/m-labs/artiq/blob/release-6/artiq/compiler/math_fns.py).
### Known bugs
......
......