MCPcopy Index your code
hub / github.com/RustPython/RustPython / pass_

Method pass_

Lib/poplib.py:211–218  ·  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

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

Callers 2

poplib.pyFile · 0.80
test_pass_Method · 0.80

Calls 1

_shortcmdMethod · 0.95

Tested by 1

test_pass_Method · 0.64