Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
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, 'we got some refusals:', refused
[all …]
/external/python/cpython3/Lib/
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/
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 …]
Dtest_smtplib.py206 self.old_DEBUGSTREAM = smtpd.DEBUGSTREAM
207 smtpd.DEBUGSTREAM = io.StringIO()
231 smtpd.DEBUGSTREAM.close()
232 smtpd.DEBUGSTREAM = self.old_DEBUGSTREAM
367 debugout = smtpd.DEBUGSTREAM.getvalue()
416 debugout = smtpd.DEBUGSTREAM.getvalue()
444 debugout = smtpd.DEBUGSTREAM.getvalue()
471 debugout = smtpd.DEBUGSTREAM.getvalue()
501 debugout = smtpd.DEBUGSTREAM.getvalue()
536 debugout = smtpd.DEBUGSTREAM.getvalue()
[all …]