(self)
| 72 | return "{}://{}/{}".format(self.scheme(), self.host(), self.path()) |
| 73 | |
| 74 | def scheme(self): |
| 75 | return ats_str(self.impl['m_ptr_scheme'], self.impl['m_len_scheme']) |
| 76 | |
| 77 | def host(self): |
| 78 | return ats_str(self.impl['m_ptr_host'], self.impl['m_len_host']) |