Closed Pencilcaseman closed 2 years ago
Arrays do not get freed (or get over-freed) when iterating in python.
To replicate:
```python import librapid as lrp x = lrp.Array([1, 2, 3]) for val in x: print(val) ```
Arrays do not get freed (or get over-freed) when iterating in python.
To replicate:
View raw code
```python import librapid as lrp x = lrp.Array([1, 2, 3]) for val in x: print(val) ```