OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:poplib
(Results
1 - 3
of
3
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_poplib.py
1
"""Test script for
poplib
module."""
3
# Modified by Giampaolo Rodola' to give
poplib
.POP3 and
poplib
.POP3_SSL
6
import
poplib
namespace
165
self.client =
poplib
.POP3(self.server.host, self.server.port)
175
self.assertRaises(
poplib
.error_proto, self.client._shortcmd, 'echo -err')
179
self.assertRaises(
poplib
.error_proto, self.client.user, 'invalid')
183
self.assertRaises(
poplib
.error_proto, self.client.user, 'invalid')
224
if hasattr(
poplib
, 'POP3_SSL'):
267
# repeat previous tests by using
poplib
.POP3_SS
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_poplib.py
1
"""Test script for
poplib
module."""
3
# Modified by Giampaolo Rodola' to give
poplib
.POP3 and
poplib
.POP3_SSL
6
import
poplib
namespace
165
self.client =
poplib
.POP3(self.server.host, self.server.port)
175
self.assertRaises(
poplib
.error_proto, self.client._shortcmd, 'echo -err')
179
self.assertRaises(
poplib
.error_proto, self.client.user, 'invalid')
183
self.assertRaises(
poplib
.error_proto, self.client.user, 'invalid')
224
if hasattr(
poplib
, 'POP3_SSL'):
267
# repeat previous tests by using
poplib
.POP3_SS
[
all
...]
/external/chromium_org/third_party/tlslite/tlslite/integration/
POP3_TLS.py
1
"""TLS Lite +
poplib
."""
4
from
poplib
import POP3
12
"""This class extends L{
poplib
.POP3} with TLS support."""
126
### New code below (all else copied from
poplib
)
Completed in 427 milliseconds