]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mention timeit.py.
authorGuido van Rossum <guido@python.org>
Thu, 6 Mar 2003 01:56:12 +0000 (01:56 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 6 Mar 2003 01:56:12 +0000 (01:56 +0000)
Misc/NEWS

index 59d08bba0ea5f33f3bbf1a0d2721b5f28a73b3eb..81df415d9425c8208e75b4e9cbbe2dbf502a1655 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Extension modules
 Library
 -------
 
+- New module timeit provides a simple framework for timing the
+  execution speed of expressions and statements.
+
 - sets.Set objects now support mixed-type __eq__ and __ne__, instead
   of raising TypeError.  If x is a Set object and y is a non-Set object,
   x == y is False, and x != y is True.  This is akin to the change made