diff options
author | Raymond Hettinger <python@rcn.com> | 2002-08-20 23:34:01 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-08-20 23:34:01 (GMT) |
commit | ede3a0da8bb9eb8230b0e3232a1cdb076b6e32ac (patch) | |
tree | c3227cc4cbccc0d5b4389d85b0f55964dfb08d27 /Lib/sets.py | |
parent | c9196bc88d4ed6bd808635fe7f64893cdb3cc704 (diff) | |
download | cpython-ede3a0da8bb9eb8230b0e3232a1cdb076b6e32ac.zip cpython-ede3a0da8bb9eb8230b0e3232a1cdb076b6e32ac.tar.gz cpython-ede3a0da8bb9eb8230b0e3232a1cdb076b6e32ac.tar.bz2 |
Minor typo
Diffstat (limited to 'Lib/sets.py')
-rw-r--r-- | Lib/sets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sets.py b/Lib/sets.py index 0512846..5ed46d1 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 |