]> granicus.if.org Git - python/commitdiff
Portion of SF patch #761104. Fixes a minor docstring error.
authorRaymond Hettinger <python@rcn.com>
Thu, 26 Jun 2003 18:49:28 +0000 (18:49 +0000)
committerRaymond Hettinger <python@rcn.com>
Thu, 26 Jun 2003 18:49:28 +0000 (18:49 +0000)
_TemporarilyImmutableSet is in fact a subclass of BaseSet

Lib/sets.py

index e6a509f1fa2d4574baf45121d1f8e83fdac6930b..ebe62c6f17ba2c7d9a24d029c2009b82bee05b40 100644 (file)
@@ -25,10 +25,9 @@ Set -- Mutable sets, subclass of BaseSet; not hashable.
 ImmutableSet -- Immutable sets, subclass of BaseSet; hashable.
     An iterable argument is mandatory to create an ImmutableSet.
 
-_TemporarilyImmutableSet -- Not a subclass of BaseSet: just a wrapper
-    around a Set, hashable, giving the same hash value as the
-    immutable set equivalent would have.  Do not use this class
-    directly.
+_TemporarilyImmutableSet -- A wrapper around a Set, hashable,
+    giving the same hash value as the immutable set equivalent
+    would have.  Do not use this class directly.
 
 Only hashable objects can be added to a Set. In particular, you cannot
 really add a Set as an element to another Set; if you try, what is