Home | History | Annotate | Download | only in python2.7

Lines Matching defs:splituser

39            "splittype", "splithost", "splituser", "splitpasswd", "splitport",
298 user_passwd, host = splituser(host)
304 proxy_passwd, host = splituser(host)
314 user_passwd, realhost = splituser(realhost)
393 user_passwd, host = splituser(host)
399 proxy_passwd, host = splituser(host)
408 user_passwd, realhost = splituser(realhost)
514 user, host = splituser(host)
1023 # splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'
1095 def splituser(host):
1096 """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'."""