diff options
author | Guido van Rossum <guido@python.org> | 1997-02-20 16:23:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-02-20 16:23:01 (GMT) |
commit | ad183bbfe669a5ebcdabe6c383e66e5e931ddb69 (patch) | |
tree | d006fadaae9f3d611d58484a5acd1a92cf72f19e /Lib | |
parent | eea9ab723db539b3638d53c94b4748c4ccd6ede1 (diff) | |
download | cpython-ad183bbfe669a5ebcdabe6c383e66e5e931ddb69.zip cpython-ad183bbfe669a5ebcdabe6c383e66e5e931ddb69.tar.gz cpython-ad183bbfe669a5ebcdabe6c383e66e5e931ddb69.tar.bz2 |
Removed nonstandard strftime formats (strftime is tested more
extensively in test_strftime.py anyway).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_time.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index bfc768a..85ea6ee 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -13,8 +13,8 @@ if int(time.mktime(time.localtime(t))) <> int(t): time.sleep(1.2) tt = time.gmtime(t) -for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'E', 'H', 'I', - 'j', 'm', 'M', 'n', 'N', 'o', 'p', 'S', 't', +for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'H', 'I', + 'j', 'm', 'M', 'p', 'S', 'U', 'w', 'W', 'x', 'X', 'y', 'Y', 'Z', '%'): format = '%' + directive time.strftime(format, tt) |