MCPcopy Index your code
hub / github.com/python/cpython / pass_

Method pass_

Lib/poplib.py:213–220  ·  view source on GitHub ↗

Send password, return response (response includes message count, mailbox size). NB: mailbox is locked by server from here to 'quit()'

(self, pswd)

Source from the content-addressed store, hash-verified

211
212
213 def pass_(self, pswd):
214 """Send password, return response
215
216 (response includes message count, mailbox size).
217
218 NB: mailbox is locked by server from here to 'quit()'
219 """
220 return self._shortcmd('PASS %s' % pswd)
221
222
223 def stat(self):

Callers 3

poplib.pyFile · 0.80
test_pass_Method · 0.80

Calls 1

_shortcmdMethod · 0.95

Tested by 2

test_pass_Method · 0.64