Use "%r" % v instead of "%s" % repr(v) -- it is shorter and more idiomatic.
authorGeorg Brandl <georg@python.org>
Wed, 3 Oct 2012 20:56:18 +0000 (22:56 +0200)
committerGeorg Brandl <georg@python.org>
Wed, 3 Oct 2012 20:56:18 +0000 (22:56 +0200)
commit5afff21c212eb07b45b9c6919eedaf3339fa569b
treeb5aa136d15f00033d258ff2c00fb5c04446899e0
parent4958b0b45935b619cb6348b7446ccd8ab9c190db
Use "%r" % v instead of "%s" % repr(v) -- it is shorter and more idiomatic.
irkerd