Skip to content

Commit 9705ca1

Browse files
author
raymond.hettinger
committed
Merge with r60683.
git-svn-id: http://svn.python.org/projects/python/trunk@60684 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 146bc09 commit 9705ca1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/_abcoll.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ def _from_iterable(cls, it):
173173
'''Construct an instance of the class from any iterable input.
174174
175175
Must override this method if the class constructor signature
176-
will not accept a frozenset for an input.
176+
does not accept an iterable for an input.
177177
'''
178-
return cls(frozenset(it))
178+
return cls(it)
179179

180180
def __and__(self, other):
181181
if not isinstance(other, Iterable):

0 commit comments

Comments
 (0)