##// END OF EJS Templates
stringutil: have buildrepr delegate to pprint for unknown types...
Augie Fackler -
r39087:38409be2 default
parent child Browse files
Show More
@@ -114,7 +114,7 b' def buildrepr(r):'
114 elif callable(r):
114 elif callable(r):
115 return r()
115 return r()
116 else:
116 else:
117 return pycompat.byterepr(r)
117 return pprint(r)
118
118
119 def binary(s):
119 def binary(s):
120 """return true if a string is binary data"""
120 """return true if a string is binary data"""
General Comments 0
You need to be logged in to leave comments. Login now