153 @type QUrl |
153 @type QUrl |
154 @return string representation of the URL |
154 @return string representation of the URL |
155 @rtype str |
155 @rtype str |
156 """ |
156 """ |
157 return url.toString( |
157 return url.toString( |
158 QUrl.ComponentFormattingOption.PrettyDecoded | |
|
159 QUrl.UrlFormattingOption.RemoveUserInfo | |
158 QUrl.UrlFormattingOption.RemoveUserInfo | |
160 QUrl.UrlFormattingOption.RemoveFragment | |
159 QUrl.UrlFormattingOption.RemoveFragment | |
161 QUrl.UrlFormattingOption.RemovePath |
160 QUrl.UrlFormattingOption.RemovePath |
162 ) |
161 ) |
163 |
162 |