Searched refs:DEBUGSTREAM (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Lib/ |
H A D | smtpd.py | 109 DEBUGSTREAM = Devnull() variable 172 print('Peer:', repr(self.peer), file=DEBUGSTREAM) 337 print('Data:', repr(line), file=DEBUGSTREAM) 520 print('===> MAIL', arg, file=DEBUGSTREAM) 567 print('sender:', self.mailfrom, file=DEBUGSTREAM) 574 print('===> RCPT', arg, file=DEBUGSTREAM) 602 print('recips:', self.rcpttos, file=DEBUGSTREAM) 661 localaddr, remoteaddr), file=DEBUGSTREAM) 664 print('Incoming connection from %s' % repr(addr), file=DEBUGSTREAM) 756 print('we got some refusals:', refused, file=DEBUGSTREAM) [all...] |
/third_party/python/Lib/test/ |
H A D | test_smtpd.py | 194 self.old_debugstream = smtpd.DEBUGSTREAM 195 self.debug = smtpd.DEBUGSTREAM = io.StringIO() 200 smtpd.DEBUGSTREAM = self.old_debugstream 231 self.old_debugstream = smtpd.DEBUGSTREAM 232 self.debug = smtpd.DEBUGSTREAM = io.StringIO() 237 smtpd.DEBUGSTREAM = self.old_debugstream 294 self.old_debugstream = smtpd.DEBUGSTREAM 295 self.debug = smtpd.DEBUGSTREAM = io.StringIO() 305 smtpd.DEBUGSTREAM = self.old_debugstream 772 self.old_debugstream = smtpd.DEBUGSTREAM [all...] |
H A D | test_smtplib.py | 248 self.old_DEBUGSTREAM = smtpd.DEBUGSTREAM 249 smtpd.DEBUGSTREAM = io.StringIO() 272 # restore DEBUGSTREAM 273 smtpd.DEBUGSTREAM.close() 274 smtpd.DEBUGSTREAM = self.old_DEBUGSTREAM 449 debugout = smtpd.DEBUGSTREAM.getvalue() 471 debugout = smtpd.DEBUGSTREAM.getvalue() 492 debugout = smtpd.DEBUGSTREAM.getvalue() 545 debugout = smtpd.DEBUGSTREAM.getvalue() 575 debugout = smtpd.DEBUGSTREAM [all...] |
Completed in 5 milliseconds