Message387864
Same logic, but this crashes:
```
def loop():
a_node = boost_python_library.get_linked_list()
temp = []
while True:
assert a_node is not None
temp.append(a_node)
prev = a_node # <-- comment this out to make the crash go away
a_node = a_node.next
if not a_node:
break
``` |
|
Date |
User |
Action |
Args |
2021-03-01 13:33:50 | andrewvaughanj | set | recipients:
+ andrewvaughanj |
2021-03-01 13:33:50 | andrewvaughanj | set | messageid: <1614605630.72.0.70353352935.issue43351@roundup.psfhosted.org> |
2021-03-01 13:33:50 | andrewvaughanj | link | issue43351 messages |
2021-03-01 13:33:50 | andrewvaughanj | create | |
|