]> git.phdru.name Git - m_lib.git/blob - m_lib/clock/tstclock.py
Remove wrong copyright lines, fix module docstrings
[m_lib.git] / m_lib / clock / tstclock.py
1 #! /usr/bin/env python
2 """Define clock() for systems that do not have it"""
3
4 from clock import clock
5 from time import sleep
6
7 print "Testing..."
8 sleep(3)
9 print "Clock:", clock()