Skip to content
Update Python subset for kernels authored by Leon Riesebos's avatar Leon Riesebos
......@@ -57,7 +57,6 @@ Please take into account the following important notes:
1. ARTIQ does not support an `except` clause with multiple exception types.
1. When using `try` and `finally` for a control safety scenario, keep in mind that that you might need to create some slack before executing the `finally` clause and a call to `wait_until_mu()` is required to guarantee the event is executed. See the code snippet below.
1. ARTIQ can not find bindings to all build-in exception types (e.g. `RuntimeError`). You can make a subclass of such an exception time to make sure ARTIQ recognizes the type.
1. ARTIQ requires the exception class constructor to follow the default signature. To prevent problems, do not override the constructor of custom exception classes.
```python
......
......