Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

False positive with attrs converter #8625

Open
tsx opened this issue Apr 3, 2020 · 4 comments · May be fixed by #8876
Open

False positive with attrs converter #8625

tsx opened this issue Apr 3, 2020 · 4 comments · May be fixed by #8876
Labels
bug mypy got something wrong topic-attrs

Comments

@tsx
Copy link

tsx commented Apr 3, 2020

Looks like mypy can't infer generic parameter properly when used in attrs converter.

from attr import attrs, attrib
from typing import FrozenSet, Text


@attrs
class Test(object):
    values = attrib(type=FrozenSet[Text], converter=frozenset)


Test(values={'a'})

Actual: reporting error

error: Argument 1 to <set> has incompatible type "str"; expected "_T"

Expected: no errors.

mypy version 0.770, python 3.5.2, no flags are used.
Latest master has basically the same error message except generic param has a different name:

error: Argument 1 to <set> has incompatible type "str"; expected "_T_co"

Possibly related: #5313

@msullivan msullivan added topic-attrs bug mypy got something wrong labels Apr 3, 2020
@msullivan
Copy link
Collaborator

Yeah, that does look wrong. Not sure how easy fixing it would be.

@markusschmaus
Copy link
Contributor

This also happens in case of a generic function.

from attr import attrs, attrib
from typing import FrozenSet, Text, Iterable, TypeVar

_T = TypeVar('_T')
def converter(ar: Iterable[_T]) -> FrozenSet[_T]:
    return frozenset(ar)

@attrs
class Test(object):
    values = attrib(type=FrozenSet[Text], converter=converter)


Test(values={'a'})

results in an error:

error: Type variable "scratch_11._T" is unbound

I looked into how this could be fixed and here is what I found out for reference:
The attrs plugin gets called during

process_top_levels(graph, scc, patches)

At this point the type of the converter isn't fully processed so when attrs looks at its type at

converter_type = get_proper_type(converter_type)

converter.is_generic returns False even though the function is generic. The full type of this function is only established during

process_functions(graph, scc, patches)

Which the attrs plugin has already completed.

markusschmaus added a commit to markusschmaus/mypy that referenced this issue May 23, 2020
markusschmaus added a commit to markusschmaus/mypy that referenced this issue May 23, 2020
@markusschmaus markusschmaus linked a pull request May 23, 2020 that will close this issue
@markusschmaus
Copy link
Contributor

I opened a PR which fixes this issue for builtin types, including frozenset. https://github.com/python/mypy/pull/8876/files

It doesn't fix the issue for generic functions, since their type still contains UnboundTypes when the attr plugin is run.

@ryansobol
Copy link

Just ran into this bug. Thank you so much for submitting a PR!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug mypy got something wrong topic-attrs
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants