Message387862
Here's some representative code that triggers the issue:
```
def loop():
a_node = boost_python_library.get_linked_list()
all_elems = []
while a_node is not None:
#
# Uncomment the below to make the crash disappear
#
# all_elems.append(a_node)
#
a_node = a_node.next
```
The *really* interesting bit is that if we save what comes off the Boost.Python linked list into a Python-proper list (`all_elems` as above), then the crash goes away. |
|
Date |
User |
Action |
Args |
2021-03-01 13:08:49 | andrewvaughanj | set | recipients:
+ andrewvaughanj |
2021-03-01 13:08:49 | andrewvaughanj | set | messageid: <1614604129.67.0.509570596366.issue43351@roundup.psfhosted.org> |
2021-03-01 13:08:49 | andrewvaughanj | link | issue43351 messages |
2021-03-01 13:08:49 | andrewvaughanj | create | |
|