From: Raymond Hettinger Date: Tue, 20 Aug 2002 23:34:01 +0000 (+0000) Subject: Minor typo X-Git-Tag: v2.3c1~4377 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ede3a0da8bb9eb8230b0e3232a1cdb076b6e32ac;p=thirdparty%2FPython%2Fcpython.git Minor typo --- diff --git a/Lib/sets.py b/Lib/sets.py index 05128462ecf2..5ed46d15a615 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -32,7 +32,7 @@ _TemporarilyImmutableSet -- Not a subclass of BaseSet: just a wrapper 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 -actuallly added is an ImmutableSet built from it (it compares equal to +actually added is an ImmutableSet built from it (it compares equal to the one you tried adding). When you ask if `x in y' where x is a Set and y is a Set or