This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author anton.gruebel
Recipients anton.gruebel
Date 2021-07-22.19:50:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626983428.37.0.292600316.issue44711@roundup.psfhosted.org>
In-reply-to
Content
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 :)
History
Date User Action Args
2021-07-22 19:50:28anton.gruebelsetrecipients: + anton.gruebel
2021-07-22 19:50:28anton.gruebelsetmessageid: <1626983428.37.0.292600316.issue44711@roundup.psfhosted.org>
2021-07-22 19:50:28anton.gruebellinkissue44711 messages
2021-07-22 19:50:28anton.gruebelcreate