Mercurial > p > roundup > code
view roundup/anypy/sets_.py @ 4546:d39c37fd2940 git
Repository conversion from Subversion to git.
| author | Eric S. Raymond <esr@thyrsus.com> |
|---|---|
| date | Tue, 18 Oct 2011 10:20:29 -0400 |
| parents | 06af6d5bedbe |
| children |
line wrap: on
line source
""" anypy.sets_: sets compatibility module uses the built-in type 'set' if available, and thus avoids deprecation warnings. Simple usage: Change all from sets import Set to from roundup.anypy.sets_ import set and use 'set' instead of 'Set'. To avoid unnecessary imports, you can: try: set except NameError: from roundup.anypy.sets_ import set see: http://docs.python.org/library/sets.html#comparison-to-the-built-in-set-types """ try: set = set # built-in since Python 2.4 except (NameError, TypeError): from sets import Set as set # deprecated as of Python 2.6 # vim: ts=8 sts=4 sw=4 si et
