Message318299
The GC calls tp_clear() if the memoryview is a part of the reference loop.
a = [memoryview(...)]
a.append(a)
del a
The GC will call tp_clear() of the list or the memoryview. What will be called first is not specified. |
|
| Date |
User |
Action |
Args |
| 2018-05-31 13:03:11 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, pitrou, skrah |
| 2018-05-31 13:03:11 | serhiy.storchaka | set | messageid: <[email protected]> |
| 2018-05-31 13:03:11 | serhiy.storchaka | link | issue33713 messages |
| 2018-05-31 13:03:11 | serhiy.storchaka | create | |
|