Set user password for the connection. initial password from the URL will be overwritten
(self, pwd)
| 165 | self._username = username |
| 166 | |
| 167 | def set_password(self, pwd): |
| 168 | """ |
| 169 | Set user password for the connection. |
| 170 | initial password from the URL will be overwritten |
| 171 | """ |
| 172 | self._password = pwd |
| 173 | |
| 174 | def set_security_string(self, string): |
| 175 | """ |
no outgoing calls
no test coverage detected