PHP 8.2.30
Preview: test_weakref.py Size: 883 B
/opt/hc_python/lib64/python3.12/site-packages/greenlet/tests/test_weakref.py

import gc
import weakref


import greenlet
from . import TestCase

class WeakRefTests(TestCase):
    def test_dead_weakref(self):
        def _dead_greenlet():
            g = greenlet.greenlet(lambda: None)
            g.switch()
            return g
        o = weakref.ref(_dead_greenlet())
        gc.collect()
        self.assertEqual(o(), None)

    def test_inactive_weakref(self):
        o = weakref.ref(greenlet.greenlet())
        gc.collect()
        self.assertEqual(o(), None)

    def test_dealloc_weakref(self):
        seen = []
        def worker():
            try:
                greenlet.getcurrent().parent.switch()
            finally:
                seen.append(g())
        g = greenlet.greenlet(worker)
        g.switch()
        g2 = greenlet.greenlet(lambda: None, g)
        g = weakref.ref(g2)
        g2 = None
        self.assertEqual(seen, [None])

Directory Contents

Dirs: 1 × Files: 27

Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-03 08:02:54
Edit Download
1.23 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
985 B lrw-r--r-- 2025-12-03 08:02:54
Edit Download
1.92 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
524 B lrw-r--r-- 2025-12-03 08:02:54
Edit Download
956 B lrw-r--r-- 2025-12-03 08:02:54
Edit Download
1.25 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
817 B lrw-r--r-- 2025-12-03 08:02:54
Edit Download
12.32 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
10.29 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
2.67 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
3.74 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
2.85 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
1.21 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
3.63 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
46.87 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
7.76 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
17.65 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
446 B lrw-r--r-- 2025-12-03 08:02:54
Edit Download
3.63 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
8.39 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
1.31 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
883 B lrw-r--r-- 2025-12-03 08:02:54
Edit Download
5.64 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
16.85 KB lrwxr-xr-x 2025-12-03 08:02:54
Edit Download
6.41 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
57.02 KB lrwxr-xr-x 2025-12-03 08:02:54
Edit Download
9.51 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).