X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_lib%2Fclock%2Ftstclock.py;h=2c1df4c79ce421a174e4bc3d93c93d6e89bf0774;hb=413c257c07051e4be5588021514dcf42ec0c56ed;hp=827fa1d9be2729af1b1e0020a3034d1722fa86a8;hpb=d7c459a9f979c4978cf07ff11056512a852fd61d;p=m_lib.git diff --git a/m_lib/clock/tstclock.py b/m_lib/clock/tstclock.py index 827fa1d..2c1df4c 100755 --- a/m_lib/clock/tstclock.py +++ b/m_lib/clock/tstclock.py @@ -1,13 +1,10 @@ #! /usr/bin/env python -""" - Define clock() for systems that do not have it - - Written by Broytman, Jul 1997. Copyright (C) 1997 PhiloSoft Design -""" +"""Define clock() for systems that do not have it""" +from __future__ import print_function from clock import clock from time import sleep -print "Testing..." +print("Testing...") sleep(3) -print "Clock:", clock() +print("Clock:", clock())