From: Guido van Rossum Date: Thu, 6 Mar 2003 01:56:12 +0000 (+0000) Subject: Mention timeit.py. X-Git-Tag: v2.3c1~1575 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9589a252203318ed1ec6841184a87b2fd3aa2d17;p=thirdparty%2FPython%2Fcpython.git Mention timeit.py. --- diff --git a/Misc/NEWS b/Misc/NEWS index 59d08bba0ea5..81df415d9425 100644 --- 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