summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-03-06 01:56:12 (GMT)
committerGuido van Rossum <guido@python.org>2003-03-06 01:56:12 (GMT)
commit9589a252203318ed1ec6841184a87b2fd3aa2d17 (patch)
tree020012ab28950294f773fe5040ce5cf0394c5587 /Misc
parentb3f09d4331e7d23eeb8166dda0504b56ec4e7edc (diff)
downloadcpython-9589a252203318ed1ec6841184a87b2fd3aa2d17.zip
cpython-9589a252203318ed1ec6841184a87b2fd3aa2d17.tar.gz
cpython-9589a252203318ed1ec6841184a87b2fd3aa2d17.tar.bz2
Mention timeit.py.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 59d08bb..81df415 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