xref: /petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/_weak_list.py (revision 4c7cc9c8e01791debde927bc0816c9a347055c8f)
1#!/usr/bin/env python3
2"""
3# Created: Tue Aug  8 09:23:03 2023 (-0400)
4# @author: Jacob Faibussowitsch
5"""
6from __future__ import annotations
7
8from .._typing import *
9
10_T = TypeVar('_T')
11
12class WeakList(List[_T]):
13  r"""Adaptor class to make builtin lists weakly referenceable"""
14  __slots__ = ('__weakref__',)
15