@@ -26,8 +26,8 @@ The kernel code supports a subset of the *Python 3.5* language. This section hig
**Known bugs**
1.There is a known compiler bug when opening multiple contexts with a single `with` statement (see [this issue](https://github.com/m-labs/artiq/issues/1478)). As a workaround, we recommend to open every context in a separate `with` statement.
1.`RuntimeError` is not bound in kernels (see [this issue](https://github.com/m-labs/artiq/issues/1477)).
1.Opening multiple contexts with a single `with` statement can result in incorrect behavior (see [this issue](https://github.com/m-labs/artiq/issues/1478)). As a workaround we recommend to open every context in a separate `with` statement.
1.`RuntimeError` is not bound in kernels (see [this issue](https://github.com/m-labs/artiq/issues/1477)). As a workaround we recommend to make a custom exception class that inherits from `RuntimeError` and raise that class instead.