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

Method user

Lib/poplib.py:203–208  ·  view source on GitHub ↗

Send user name, return response (should indicate password required).

(self, user)

Source from the content-addressed store, hash-verified

201 # Here are all the POP commands:
202
203 def user(self, user):
204 """Send user name, return response
205
206 (should indicate password required).
207 """
208 return self._shortcmd('USER %s' % user)
209
210
211 def pass_(self, pswd):

Callers 2

poplib.pyFile · 0.80
test_userMethod · 0.80

Calls 1

_shortcmdMethod · 0.95

Tested by 1

test_userMethod · 0.64