Finally make tests work for 3.14

This commit is contained in:
Dave Halter
2026-05-01 23:49:36 +02:00
parent 8520a9958b
commit d0b11806d4
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -196,7 +196,10 @@ class A(object):
class B(object):
def shout(self): pass
cls = random.choice([A, B])
#? ['say', 'shout']
# TODO why is this not inferred? This used to work...
#?
cls
#? []
cls().s
# -----------------