Gideon

Results 228 comments of Gideon

I ran it on my other machine (same OS (different version: 19.3), same environment variables) and it failed with the exact same tests.

@figsoda AFAIK 0.4.1, I'll check in a minute.

```bash $ ouch -V ouch 0.4.1 $ tree dir dir └── file 0 directories, 1 file $ tar -czf targz dir $ ouch d targz [INFO] Detected file: `/home/gideon/delme/targz` extension...

> I have made a tool to enhance `ast` with metadata from `mypy`: > I am going to release it soon. Hi @sobolevn, this would be extremely useful for me...

> Source is here: https://github.com/wemake-services/typed-linter/tree/master/typed_linter/contrib/mypy @sobolevn Is it on private? https://github.com/wemake-services/typed-linter is a 404 for me.

No idea why **only** windows-latest pypy-3.8 fails with a `FileNotFoundError`

Hello @erictraut, `dataclass_transform` seems to be what I'm looking for, but it doesn't seem to work? ```py from typing_extensions import dataclass_transform @dataclass_transform(eq_default=False, kw_only_default=True) class AttrKwargs: def __init__(self, **kwargs: object): for...

> Mypy doesn't support dataclass_transform yet. Ah, that explains it. Maybe there should be a warning when using it, instead of just ignoring it? `dataclass` requires adding the decorator to...

FYI, #72 is broken: > Loading save files is corrupt; pin names seem to get an incrementing number added to the end of them, and logic is broken in big...

Hi @devmessias, is it correct that not all mypy nodes are supported right now? It only outputs some nodes, it looks like they're defined in [mypy_visitor.py](https://github.com/pyastrx/pyastrx/blob/main/pyastrx/inference/mypy_visitor.py).