Kaydet (Commit) bddf502a authored tarafından Marc-André Lemburg's avatar Marc-André Lemburg

Marc-Andre Lemburg <mal@lemburg.com>:

Removed a test which can fail when the default locale setting
uses a Latin-1 encoding. The test case is not applicable anymore.
üst 868f0c71
......@@ -272,12 +272,6 @@ assert '...%(foo)s...' % {u'foo':u"abc",'def':123} == u'...abc...'
assert '...%(foo)s...' % {u'foo':u"abc",u'def':123} == u'...abc...'
assert '...%s...%s...%s...%s...' % (1,2,3,u"abc") == u'...1...2...3...abc...'
assert '...%s...' % u"abc" == u'...abc...'
try:
'...%s......' % u"abc"
except ValueError:
pass
else:
print "*** formatting failed ...%s......' % u'abc' failed to raise an exception"
print 'done.'
# Test builtin codecs
......
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