Alex Waygood

Results 902 comments of Alex Waygood

Looks like this is now fixed! (@pablogsal or @ambv please reopen if there's more to do!)

Similar discussion in a newer issue: https://bugs.python.org/issue45721

We've discovered that if you manually type out a condition that evaluates to `False` in the new REPL, `False` is printed as the result, as expected... ```pycon >>> (3, 13,...

I tested this locally by making this change to `pyproject.toml`: ```diff --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ classifiers = [ ] requires-python = '>=3.8' dependencies = [ -...

This PR should fix the "test typing-extensions main" job in pydantic's CI, which is currently failing on your `main` branch (e.g. see the test failures on https://github.com/pydantic/pydantic/pull/9431)

> @AlexWaygood, > > Before we merge, could you please add some tests for the behavioral changes you've listed above? Thanks again! Sure -- what kind of tests are you...

Oh, but it looks like you already have a CI job for testing with your oldest supported version of `typing_extensions`, as well as a CI job for testing with the...

Hi! Rye uses `once_cell::sync::Lazy` in several places, e.g. https://github.com/astral-sh/rye/blob/54405065a4885529d31ea48728abcf76c143576f/rye/src/bootstrap.rs#L61-L67 While `:OnceCell` has been added to std, the same is not yet true for `once_cell::sync::Lazy` (follow https://github.com/rust-lang/rust/issues/109736 for progress on that)