| 174 | |
| 175 | def test_password_custom_obj(self): |
| 176 | class SecurePassword(str): |
| 177 | def __init__(self, value): |
| 178 | self.value = value |
| 179 | |
| 180 | def __str__(self): |
| 181 | return self.value |
| 182 | |
| 183 | sp = SecurePassword("secured_password") |
| 184 | u = url.URL.create( |
no outgoing calls