Package svnmailer :: Module browser :: Class ParsedUrl
[hide private]

Class ParsedUrl

source code

object --+
         |
        ParsedUrl

Container for URL parsing and modification

Instance Methods [hide private]
 
__init__(self, url)
Initialization
source code
str
__str__(self)
Returns the URL as string
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Instance Variables [hide private]
str fragment
The fragment
str netloc
The netloc
str param
The path param
str path
The path
str query
The query string
str scheme
The scheme
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, url)
(Constructor)

source code 

Initialization

Overrides: object.__init__

__str__(self)
(Informal representation operator)

source code 

Returns the URL as string

Returns: str
The URL as string
Overrides: object.__str__