Stephen Rosen

Results 104 comments of Stephen Rosen

I hit this on day two of a new project, trying to setup builds for multiple different linux distros for testing. I have a setup something like so: ``` ubuntu1604/Dockerfile...

A minor update regarding https://github.com/jpadilla/pyjwt/issues/314 which may have bearing on this project: - https://github.com/jpadilla/pyjwt/pull/773 seems poised to merge (🤞) - afterwards, I intend to propose a change to make it...

> Another option which you didn't mention is to have a `[scripts/*]` section for Bash, and a later `[scripts/*.sh]` section for POSIX shell Just to address this really quickly: I...

Thanks for being so receptive to this! I was looking at [`editorconfig.go`](https://github.com/mvdan/editorconfig) (that's your parsing code, so I figure that's what's in use here) and trying to understand what change...

> Is there a particular reason you think we should define a different match priority? When I wrote my comment on editorconfig, I didn't know about that existing behavior, so...

> ```python > if TYPE_CHECKING: > PostgreSQLUUID = sqlalchemy.types.TypeEngine[uuid.UUID] > else: > PostgreSQLUUID = sqlalchemy.dialects.postgresql.UUID(as_uuid=True) > ``` Could someone explain this workaround? The runtime value is obvious, but even after...

`reveal_type` is handy, but I mean that I don't understand how `sqlalchemy.types.TypeEngine[uuid.UUID]` produces a `Column[UUID*]`. As far as I can tell, `TypeEngine` doesn't even support subscripting. So is this some...

The auto-close happening over a 3-day period is a little short, especially as I wasn't working on Friday. Can this be reopened? There's been no activity because I don't want...

I just realized that #1019 has been sitting, so possibly this should be closed in favor of several of the dependabot PRs. I'll leave this here though, in case this...

I ended up here looking for a way to handle a case almost identical to the above, trying to specify different overloads for `str` vs `Sequence[str]`. A trivial example: ```python...