diff options
author | Guido van Rossum <guido@python.org> | 1997-02-19 16:25:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-02-19 16:25:52 (GMT) |
commit | 13ddde0653c04980654e00ca0f24c64bd02df291 (patch) | |
tree | 7dd3464f8b5bd27c5a21fe27789322bf84a792a7 /Lib/test | |
parent | 19302de7a044a5c9945586016826b1a5dac6d46a (diff) | |
download | cpython-13ddde0653c04980654e00ca0f24c64bd02df291.zip cpython-13ddde0653c04980654e00ca0f24c64bd02df291.tar.gz cpython-13ddde0653c04980654e00ca0f24c64bd02df291.tar.bz2 |
Remove %n and %t from the list of standard expectations.
Diffstat (limited to 'Lib/test')
-rwxr-xr-x | Lib/test/test_strftime.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py index 93e7b66..7e748d5 100755 --- a/Lib/test/test_strftime.py +++ b/Lib/test/test_strftime.py @@ -49,12 +49,10 @@ expectations = ( ('%j', '%03d' % now[7], 'julian day (001-366)'), ('%M', '%02d' % now[4], 'minute, (00-59)'), ('%m', '%02d' % now[1], 'month as number (01-12)'), - ('%n', '\n', 'newline character'), ('%p', ampm, 'AM or PM as appropriate'), ('%R', '%02d:%02d' % (now[3], now[4]), '%H:%M'), ('%r', '%02d:%02d:%02d %s' % (clock12, now[4], now[5], ampm), '%I:%M:%S %p'), - ('%t', '\t', 'tab character'), ('%S', '%02d' % now[5], 'seconds of current time (00-60)'), ('%T', '%02d:%02d:%02d' % (now[3], now[4], now[5]), '%H:%M:%S'), ('%X', '%02d:%02d:%02d' % (now[3], now[4], now[5]), '%H:%M:%S'), |