New submission from Kaushal Rohit :
`fs` argument could be an iterable, and calling len on it would raise an
Exception.
We are converting `fs` into a set anyways for set difference, and that too
twice. we can just put an `fs = set(fs)`.
Let me know if we choose to go with that and I will
Change by Kaushal Rohit :
--
keywords: +patch
pull_requests: +21553
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/22555
___
Python tracker
<https://bugs.python.org/issu
New submission from Kaushal Rohit :
The `typing` module has a wrapper namespace in it called `typing.io` which
contain I/O stream types.
These types are now a part of the `typing` module itself.
While we are at it, should we also deprecate `typing.re`?
--
components: Library (Lib