Kaydet (Commit) ab9e4b76 authored tarafından Neil Schemenauer's avatar Neil Schemenauer

check for unicode.__mod__

üst ce30bc9f
......@@ -454,6 +454,7 @@ verify(u"%c" % (u"a",) == u'a')
verify(u"%c" % ("a",) == u'a')
verify(u"%c" % (34,) == u'"')
verify(u"%c" % (36,) == u'$')
verify(u"%d".__mod__(10) == u'10')
if sys.platform[:4] != 'java':
value = u"%r, %r" % (u"abc", "abc")
if value != u"u'abc', 'abc'":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment