Searched refs:DEBUGSTREAM (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
H A Dsmtpd.py92 DEBUGSTREAM = Devnull() variable
130 print >> DEBUGSTREAM, 'Peer:', repr(self.__peer)
145 print >> DEBUGSTREAM, 'Data:', repr(line)
228 print >> DEBUGSTREAM, '===> MAIL', arg
237 print >> DEBUGSTREAM, 'sender:', self.__mailfrom
241 print >> DEBUGSTREAM, '===> RCPT', arg
250 print >> DEBUGSTREAM, 'recips:', self.__rcpttos
292 print >> DEBUGSTREAM, \
301 print >> DEBUGSTREAM, 'Incoming connection from %s' % repr(addr)
358 print >> DEBUGSTREAM, 'w
[all...]
/external/python/cpython3/Lib/
H A Dsmtpd.py106 DEBUGSTREAM = Devnull() variable
169 print('Peer:', repr(self.peer), file=DEBUGSTREAM)
334 print('Data:', repr(line), file=DEBUGSTREAM)
517 print('===> MAIL', arg, file=DEBUGSTREAM)
564 print('sender:', self.mailfrom, file=DEBUGSTREAM)
571 print('===> RCPT', arg, file=DEBUGSTREAM)
599 print('recips:', self.rcpttos, file=DEBUGSTREAM)
658 localaddr, remoteaddr), file=DEBUGSTREAM)
661 print('Incoming connection from %s' % repr(addr), file=DEBUGSTREAM)
753 print('we got some refusals:', refused, file=DEBUGSTREAM)
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_smtpd.py187 self.old_debugstream = smtpd.DEBUGSTREAM
188 self.debug = smtpd.DEBUGSTREAM = io.StringIO()
193 smtpd.DEBUGSTREAM = self.old_debugstream
224 self.old_debugstream = smtpd.DEBUGSTREAM
225 self.debug = smtpd.DEBUGSTREAM = io.StringIO()
230 smtpd.DEBUGSTREAM = self.old_debugstream
287 self.old_debugstream = smtpd.DEBUGSTREAM
288 self.debug = smtpd.DEBUGSTREAM = io.StringIO()
298 smtpd.DEBUGSTREAM = self.old_debugstream
765 self.old_debugstream = smtpd.DEBUGSTREAM
[all...]
H A Dtest_smtplib.py210 self.old_DEBUGSTREAM = smtpd.DEBUGSTREAM
211 smtpd.DEBUGSTREAM = io.StringIO()
234 # restore DEBUGSTREAM
235 smtpd.DEBUGSTREAM.close()
236 smtpd.DEBUGSTREAM = self.old_DEBUGSTREAM
366 debugout = smtpd.DEBUGSTREAM.getvalue()
410 debugout = smtpd.DEBUGSTREAM.getvalue()
437 debugout = smtpd.DEBUGSTREAM.getvalue()
463 debugout = smtpd.DEBUGSTREAM.getvalue()
492 debugout = smtpd.DEBUGSTREAM
[all...]

Completed in 1130 milliseconds