From: Raymond Hettinger Date: Sat, 9 Feb 2008 03:34:52 +0000 (+0000) Subject: Merge with r60683. X-Git-Tag: v2.6a1~223 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e827bfdfea7b940517f90af78c986aec9159d2c;p=thirdparty%2FPython%2Fcpython.git Merge with r60683. --- diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index 6f1759b4e8b3..a0473f3471c0 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py @@ -173,9 +173,9 @@ class Set(Sized, Iterable, Container): '''Construct an instance of the class from any iterable input. Must override this method if the class constructor signature - will not accept a frozenset for an input. + does not accept an iterable for an input. ''' - return cls(frozenset(it)) + return cls(it) def __and__(self, other): if not isinstance(other, Iterable):