Import Upstream version 4.12.4

This commit is contained in:
geos_one
2025-08-12 22:28:56 +02:00
parent 03a8170b15
commit 9181ee2487
1629 changed files with 874094 additions and 554378 deletions

View File

@@ -4,7 +4,6 @@
import weakref
import six
_cache = weakref.WeakValueDictionary()
@@ -27,7 +26,7 @@ class ListMeta(type):
return _cache.get(key, t)
class List(six.with_metaclass(ListMeta, list)):
class List(list, metaclass=ListMeta):
__parameters__ = ()
def __init__(self, *_args, **_kwargs):