feat: вфыв

This commit is contained in:
2024-07-21 10:56:59 +03:00
parent 6b09251141
commit 7c10d8777e
26 changed files with 497 additions and 43 deletions

17
test.py
View File

@@ -1,14 +1,3 @@
from typing import Self
class A:
@classmethod
def test(cls) -> Self:
return cls()
class B(A):
pass
a = B.test()
a = {1, 2, 3}
b = {4, 5, 6}
print(a.union(b))