From f58f4ec20ad79ca6893d92b7ece8ad29fd1629c1 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 6 Jan 2015 01:04:50 +0200 Subject: [PATCH] timeit: Explicit module docstring. --- timeit/timeit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timeit/timeit.py b/timeit/timeit.py index 4f7d28fb..cfec60b4 100644 --- a/timeit/timeit.py +++ b/timeit/timeit.py @@ -1,6 +1,6 @@ #! /usr/bin/env python3 -"""Tool for measuring execution time of small code snippets. +__doc__ = """Tool for measuring execution time of small code snippets. This module avoids a number of common traps for measuring execution times. See also Tim Peters' introduction to the Algorithms chapter in