Message397995
When I did some work on typeshed I found some weird syntax in pipes.py.
if type(cmd) is not type(''):
which can easily be changed to
if not isinstance(cmd, str):
There are two occurrences and I will directly create the PR :) |
|
Date |
User |
Action |
Args |
2021-07-22 19:50:28 | anton.gruebel | set | recipients:
+ anton.gruebel |
2021-07-22 19:50:28 | anton.gruebel | set | messageid: <1626983428.37.0.292600316.issue44711@roundup.psfhosted.org> |
2021-07-22 19:50:28 | anton.gruebel | link | issue44711 messages |
2021-07-22 19:50:28 | anton.gruebel | create | |
|