check for str.__mod__

This commit is contained in:
Neil Schemenauer 2002-11-18 16:12:11 +00:00
parent ab9e4b76c2
commit b981df9943
1 changed files with 3 additions and 0 deletions

View File

@ -282,6 +282,9 @@ def run_method_tests(test):
test('zfill', '34', '34', 1)
test('zfill', '34', '0034', 4)
test('__mod__', '+%s+', '+hello+', 'hello')
test('__mod__', '+%d+', '+10+', 10)
# Encoding/decoding
codecs = [('rot13', 'uryyb jbeyq'),
('base64', 'aGVsbG8gd29ybGQ=\n'),