Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: agronholm/anyio
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 56f7777
Choose a base ref
...
head repository: agronholm/anyio
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ecd414c
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Nov 24, 2022

  1. Shutdown the loop's default thread executor at the end of a test

    The same approach is adopted in IsolatedAsyncioTestCase. It prevents
    leaking asyncio threads as loop.close() doesn't join them.
    
    BaseEventLoop.shutdown_default_executor was introduced in Python 3.9.
    For earlier versions, this commit introduces an adapted version of
    the method: _shutdown_default_executor. However, it doesn't work
    with uvloop < 0.15.0 because, uvloop doesn't expose
    _default_executor attribute. It's rather a minor issue as
    uvloop 0.15.0 is 2 years old - in such case this commit is a no-op.
    
    Fixes #503
    marcinbarczynski committed Nov 24, 2022
    Configuration menu
    Copy the full SHA
    ecd414c View commit details
    Browse the repository at this point in the history
Loading