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 Maxpxt
Recipients Maxpxt
Date 2019-02-05.14:32:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549377146.69.0.493478907421.issue35899@roundup.psfhosted.org>
In-reply-to
Content
Typo fix on solution 2:

def _is_sunder(name):
    """Returns True if a _sunder_ name, False otherwise."""
    return (name[:1] == name[-1:] == '_' and
            name[1:2] != '_' and
            name[-2:-1] != '_' and
            len(name) > 2)
History
Date User Action Args
2019-02-05 14:32:28Maxpxtsetrecipients: + Maxpxt
2019-02-05 14:32:26Maxpxtsetmessageid: <1549377146.69.0.493478907421.issue35899@roundup.psfhosted.org>
2019-02-05 14:32:26Maxpxtlinkissue35899 messages
2019-02-05 14:32:26Maxpxtcreate