__init__.py 402 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. '''dictionaries with attribute-style access.'''
  3. from stuf.iterable import (
  4. exhaustmap as exhaustitems, exhaustcall as exhaustmap, exhauststar)
  5. from stuf.core import (
  6. defaultstuf, fixedstuf, frozenstuf, orderedstuf, stuf, chainstuf, countstuf)
  7. __version__ = (0, 9, 16)
  8. __all__ = (
  9. 'defaultstuf fixedstuf frozenstuf orderedstuf stuf chainstuf countstuf'
  10. ).split()