Home | History | Annotate | Download | only in collections

Lines Matching defs:fromkeys

276     def fromkeys(cls, iterable, value=None):
277 '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S.
582 def fromkeys(cls, iterable, v=None):
586 'Counter.fromkeys() is undefined. Use Counter(iterable) instead.')
908 def fromkeys(cls, iterable, *args):
910 return cls(dict.fromkeys(iterable, *args))
1018 def fromkeys(cls, iterable, value=None):