commit | 2e827bfdfea7b940517f90af78c986aec9159d2c | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Feb 09 03:34:52 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Feb 09 03:34:52 2008 +0000 |
tree | 84075d7b7a8d9731a13f7278e8e80447c484ee7d | |
parent | c2bc0d17e83ad88b829a669cc9ee7194b9e46593 [diff] |
Merge with r60683.
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index 6f1759b..a0473f3 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py
@@ -173,9 +173,9 @@ '''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):