This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author andrewvaughanj
Recipients andrewvaughanj
Date 2021-03-01.13:33:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1614605630.72.0.70353352935.issue43351@roundup.psfhosted.org>
In-reply-to
Content
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
```
History
Date User Action Args
2021-03-01 13:33:50andrewvaughanjsetrecipients: + andrewvaughanj
2021-03-01 13:33:50andrewvaughanjsetmessageid: <1614605630.72.0.70353352935.issue43351@roundup.psfhosted.org>
2021-03-01 13:33:50andrewvaughanjlinkissue43351 messages
2021-03-01 13:33:50andrewvaughanjcreate