X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_lib%2Fclock%2Fmkclock.py;h=b2dfaad384eaccf46e05d56b0d4f688afe25a7ec;hb=87ed070d1b1776366d3ddd15eef1f37a45c585ea;hp=7841ec847ceac3ee64d81d21a53ed5ecd0a95463;hpb=8d79317cdc8220ff3c2192e68fc1dfc749c3ea1c;p=m_lib.git diff --git a/m_lib/clock/mkclock.py b/m_lib/clock/mkclock.py index 7841ec8..b2dfaad 100755 --- a/m_lib/clock/mkclock.py +++ b/m_lib/clock/mkclock.py @@ -1,20 +1,21 @@ #! /usr/bin/env python """Test if current interpreter do not have clock() and define it as need""" +from __future__ import print_function import sys, time -print "Testing...", +print("Testing...", end=' ') sys.stdout.flush() time.sleep(3) -print '\n' + " "*len("Testing...") + '\n', +print('\n' + " "*len("Testing...") + '\n', end=' ') -need_clock = time.clock() <> 3 +need_clock = time.clock() != 3 outfile = open("clock.py", 'w') if need_clock: - print "Generaing clock.py with custom clock()" + print("Generaing clock.py with custom clock()") outfile.write("""\"\"\" Define clock() for systems that do not have it \"\"\" @@ -26,7 +27,7 @@ def clock(): return int(time() - _clock) """) else: - print "Generaing clock.py with standard clock()" + print("Generaing clock.py with standard clock()") outfile.write("""\"\"\" Define clock() shim \"\"\"