summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/weakref_in_del.py
blob: 2e9b186837497a1cfee726713bd230328c3f765e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import weakref

# http://python.org/sf/1377858
# Fixed for new-style classes in 2.5c1.

ref = None

def test_weakref_in_del():
    class Target():
        def __del__(self):
            global ref
            ref = weakref.ref(self)

    w = Target()

if __name__ == '__main__':
    test_weakref_in_del()