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 pepoluan
Recipients Dario D'Amico, Mario Colombo, barry, pepoluan, r.david.murray, rahul-kumi, redstone-cold
Date 2021-01-05.06:37:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609828642.48.0.0746069230003.issue27820@roundup.psfhosted.org>
In-reply-to
Content
Okay, I finally figured out what's wrong.

This piece of code in `test_smtplib.py`:

        if self.smtp_state == self.AUTH:
            line = self._emptystring.join(self.received_lines)
            print('Data:', repr(line), file=smtpd.DEBUGSTREAM)
            self.received_lines = []
            try:
                self.auth_object(line)
            except ResponseException as e:
                self.smtp_state = self.COMMAND
                self.push('%s %s' % (e.smtp_code, e.smtp_error))
                return

The last "return" is over-indented.
History
Date User Action Args
2021-01-05 06:37:22pepoluansetrecipients: + pepoluan, barry, r.david.murray, redstone-cold, Dario D'Amico, Mario Colombo, rahul-kumi
2021-01-05 06:37:22pepoluansetmessageid: <1609828642.48.0.0746069230003.issue27820@roundup.psfhosted.org>
2021-01-05 06:37:22pepoluanlinkissue27820 messages
2021-01-05 06:37:22pepoluancreate