Skip to content
Snippets Groups Projects
Commit bc776c31 authored by Augie Fackler's avatar Augie Fackler
Browse files

url: add some defensive asserts on expected incoming types

Our type handling is a nightmare here, and we're loading passwords to
do network IO, so we can afford to be potentially-slow but pedantic
here.

Differential Revision: https://phab.mercurial-scm.org/D5734
parent fa7d61f9
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,8 @@
return self.passwddb.add_password(realm, uri, user, passwd)
def find_user_password(self, realm, authuri):
assert isinstance(realm, (type(None), str))
assert isinstance(authuri, str)
authinfo = self.passwddb.find_user_password(realm, authuri)
user, passwd = authinfo
if user and passwd:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment