##// END OF EJS Templates
py3: fix repr(util.url) to return system string...
Yuya Nishihara -
r34074:30535fe4 default
parent child Browse files
Show More
@@ -2804,6 +2804,7 b' class url(object):'
2804 if v is not None:
2804 if v is not None:
2805 setattr(self, a, urlreq.unquote(v))
2805 setattr(self, a, urlreq.unquote(v))
2806
2806
2807 @encoding.strmethod
2807 def __repr__(self):
2808 def __repr__(self):
2808 attrs = []
2809 attrs = []
2809 for a in ('scheme', 'user', 'passwd', 'host', 'port', 'path',
2810 for a in ('scheme', 'user', 'passwd', 'host', 'port', 'path',
General Comments 0
You need to be logged in to leave comments. Login now