summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-12-09 08:56:06 (GMT)
committerRaymond Hettinger <python@rcn.com>2002-12-09 08:56:06 (GMT)
commitef8b9c6616da75f725edf4c8cf0353cb38068cf4 (patch)
tree1bc572b2fa23c6170e6da4b557d8190825149213 /Misc
parent123dc8ef722023da949798aec8a3ee8e23a4f6a5 (diff)
downloadcpython-ef8b9c6616da75f725edf4c8cf0353cb38068cf4.zip
cpython-ef8b9c6616da75f725edf4c8cf0353cb38068cf4.tar.gz
cpython-ef8b9c6616da75f725edf4c8cf0353cb38068cf4.tar.bz2
Docs were added about a month ago
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 1 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 68ff040..033c5c8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -498,8 +498,7 @@ Library
set type using the keys of a dict to represent the set. There's
also a class ImmutableSet which is useful when you need sets of sets
or when you need to use sets as dict keys, and a class BaseSet which
- is the base class of the two. (This is not documented yet, but
- help(sets) gives a wealth of information.)
+ is the base class of the two.
- Added operator.pow(a,b) which is equivalent to a**b.