コード例 #1
0
ファイル: http.py プロジェクト: jessethegame/python-www
 def absolute(self):
     """
     Return absolute path, the url string without scheme and netloc parts
     """
     return lib.urlunsplit(('', '', self.path, self.query_string, self.fragment))
コード例 #2
0
ファイル: http.py プロジェクト: jessethegame/python-www
 def url(self):
     return lib.urlunsplit(self.split())
コード例 #3
0
ファイル: http.py プロジェクト: jessethegame/python-www
 def __str__(self):
     return lib.urlunsplit(self.split())