hodgespodge
hodgespodge
I'm sure this is a niche request, but I'm running into a situation where I would like to use PromisedTypes with default values. Here is an example of the problem...
I have not worked with covariant typing before so forgive if the following is ignorance on my part: I assume the following code should be unambiguous. It fails due to...
Python 3.8 -- No issue for python 3.11 Plum 2.5.4 (and probably earlier versions) ```python from plum import dispatch class myClass: @dispatch @staticmethod def myFunc(a: int, b: int) -> int:...