summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-04-08 19:49:40 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-04-08 19:49:40 (GMT)
commitcfd55501bbd2e2043638db47fd195955d9ec1d03 (patch)
treebeec3d86793314ce01458dc04ef2d30363e01f4d
parent8805e66ec8c67a8ec2ce6e1e6e6802ce2252925b (diff)
downloadcpython-cfd55501bbd2e2043638db47fd195955d9ec1d03.zip
cpython-cfd55501bbd2e2043638db47fd195955d9ec1d03.tar.gz
cpython-cfd55501bbd2e2043638db47fd195955d9ec1d03.tar.bz2
add a #! line for unix weenies
-rw-r--r--Lib/timeit.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/timeit.py b/Lib/timeit.py
index e4d0e50..9870954 100644
--- a/Lib/timeit.py
+++ b/Lib/timeit.py
@@ -1,3 +1,5 @@
+#! /usr/bin/env python
+
"""Tool for measuring execution time of small code snippets.
This module avoids a number of common traps for measuring execution