From: Barry Warsaw Date: Fri, 13 Dec 1996 18:08:58 +0000 (+0000) Subject: Hmm, now that I think about it, we *can* use time.time() and 'date' if X-Git-Tag: v1.5a1~754 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c23b5fdbcb48cc1254035e8947e447aad4518cf;p=thirdparty%2FPython%2Fcpython.git Hmm, now that I think about it, we *can* use time.time() and 'date' if running verbose. --- diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py index 288162cb8088..28ae4c64a719 100755 --- a/Lib/test/test_strftime.py +++ b/Lib/test/test_strftime.py @@ -9,13 +9,15 @@ verbose = 0 if __name__ == '__main__': verbose = 1 -now = 850499890.282 # time.time() -fromdate = 'Fri Dec 13 12:58:10 EST 1996' # os.popen('date') +if verbose: + now = time.time() + fp = os.popen('date') + fromdate = string.strip(fp.readline()) + fp.close() +else: + now = 850499890.282 # time.time() + fromdate = 'Fri Dec 13 12:58:10 EST 1996' # os.popen('date') -## now = time.time() -## fp = os.popen('date') -## fromdate = string.strip(fp.readline()) -## fp.close() nowsecs = int(now) gmt = time.gmtime(now) now = time.localtime(now)