Vincent Breitmoser f4284d943a In DomainSpecificString, override __repr__ in addition to __str__
For some reason, string interpolation on a DomainSpecificString object
like "%r" % (domainSpecificStringObj) fails under PyPy, because the
default __repr__ implementation wants to iterate over the object. I'm
not sure why that happens, but overriding __repr__ instead of __str__
fixes this problem, and is arguably the more appropriate thing to do
anyways.
2018-04-10 11:35:29 +02:00
..
2017-11-29 16:00:46 +00:00
2018-02-15 15:47:06 +00:00
2018-04-06 16:02:06 +01:00
2018-02-21 11:29:49 +00:00
2018-03-26 16:36:53 +01:00