An open API service indexing awesome lists of open source software.

https://github.com/fschutt/pyo3-bug

PyO3 bug
https://github.com/fschutt/pyo3-bug

Last synced: about 1 month ago
JSON representation

PyO3 bug

Awesome Lists containing this project

README

          

# pyo3-bug

Bug example for PyO3 bug:

```python
from azul import *

wrapper = Wrapper()
child = Child()

print(child.flag) # ok: prints True (default)
print(wrapper.child.flag) # ok: prints True (default)

# set both to False
child.flag = False
wrapper.child.flag = False

print(child.flag) # ok: prints False (changed)
print(wrapper.child.flag) # error: still prints True (not changed)
```