(self, name)
| 86 | self.__conn = http.client.HTTPConnection(self.__url.hostname, port, timeout=timeout) |
| 87 | |
| 88 | def __getattr__(self, name): |
| 89 | if name.startswith('__') and name.endswith('__'): |
| 90 | # Python internal stuff |
| 91 | raise AttributeError |
| 92 | if self._service_name is not None: |
| 93 | name = "%s.%s" % (self._service_name, name) |
| 94 | return AuthServiceProxy(self.__service_url, name, connection=self.__conn) |
| 95 | |
| 96 | def _request(self, method, path, postdata): |
| 97 | ''' |
nothing calls this directly
no test coverage detected