Home
Software Heritage
Search
Configure Global Search
Log In
Transactions
P626
Change Details
Change Details
Old
New
Diff
from typing import Callable class Foo: f: Callable def __init__(self, f: Callable): self.f = f
from typing import Callable class Foo: f: Callable def __init__(self, f: Callable): self.f = f # -> error: Cannot assign to a method
from typing import Callable class Foo: f: Callable def __init__(self, f: Callable): self.f = f
# -> error: Cannot assign to a method
Continue