asyncstdlib icon indicating copy to clipboard operation
asyncstdlib copied to clipboard

Improvements and cleanup for typing

Open maxfischer2781 opened this issue 2 years ago • 0 comments

This PR is for maintenance on typing support.

  • typing bug fixes:
    • ExitStack.push callables now match the proper ... | None instead of just ...
  • improved support for matching callables and their parameter types
    • functools.lru_cache preserves method parameters
  • promote various (...) -> (await) bool arguments to just (...) -> Any since anything is boolean
  • add various missing @overload cases

maxfischer2781 avatar Mar 03 '24 07:03 maxfischer2781