Graham Bleaney
Graham Bleaney
https://github.com/python/typeshed/pull/8268 is landed. @stroxler and chance of a typeshed upgrade + pyre release so we can close out this issue?
@belthaZornv could you verify that you see a `sentry_sdk` folder in your `/opt/hostedtoolcache/Python/3.7.8/x64/lib/python3.7/site-packages`? For some reason, Pyre can't find `sentry_sdk` in any of the folders in your `search_path`, and the...
@belthaZornv is the error still the same message? Can you try including the import line that is triggering this error message? Also, can you include the output of `ls -l...
Sorry, @belthaZornv I've been off work the last while and not checking anything from GitHub. Your config looks reasonable to me, so I'm not sure what's going wrong. I've asked...
> we have to figure out what to do with the underscore functions defined in the “.pysa” file. It looks like all of those functions do exist in the Django...
> Is there real value for them in Pyre? We need them to be present if we're going to keep those models around. Pysa enforces that models correspond to functions...
@maximmasiutin if they don't accept typeddjango/django-stubs#598, I'm OK with updating our Pysa models to match their polite fiction about `_BaseQuerySet`. If we add a pip dependency of `pyre-check` on `django-stubs`,...
> The suppliers of the .pyi files did deliberately not include names starting with underscore, because they are reserved for internal use. Did the typeddjango maintainers say that somewhere? I...
> Pyre appears to also apply those rules to re.Pattern (even in the case where typing is never even imported!) which seems wrong. The explanation for this is that typeshed...
@willbtlr-rh I just tested internally and found a bug in your model. There should be a `__` preceding the `a` argument in order to match [typeshed](https://github.com/python/typeshed/blob/ec64372348430912379b83ea80e20bc6119faedf/stdlib/posixpath.pyi#L113): ``` def posixpath.join(__a: TaintSink[FileSystem_ReadWrite],...