Mateusz Urbańczyk
Mateusz Urbańczyk
Hi! I have written a simple python script to automatically generate bibtex links for paper based on DBLP, it's available here: https://gist.github.com/Tomatosoup97/f6ae1b96e28e64c35d950967d51df3f2 And here is result of running it on...
Bump, any updates when the version will be available on PyPI?
Minimal example similar to @mkielar's but with structural subtyping ``` from dataclasses import dataclass from typing import Protocol @dataclass(frozen=True) class Large: x: int y: int @dataclass(frozen=True) class Small(Protocol): x: int...
@erictraut right, thanks for noting this, I have reported it separately as I didn't find any already existing issue: #10849 As for the expected failure - do you know any...