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

Method user

Lib/poplib.py:205–210  ·  view source on GitHub ↗

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

(self, user)

Source from the content-addressed store, hash-verified

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

Callers 3

poplib.pyFile · 0.80
test_userMethod · 0.80

Calls 1

_shortcmdMethod · 0.95

Tested by 2

test_userMethod · 0.64