Mercurial > p > roundup > code
view roundup/anypy/dbm_.py @ 4695:132650f4700a
#2550782: Added a new irker detector to send notifications on IRC when an issue is created or messages are added.
| author | Ezio Melotti <ezio.melotti@gmail.com> |
|---|---|
| date | Fri, 14 Dec 2012 18:22:27 +0200 |
| parents | 0d9369d35483 |
| children | d5da643b3d25 |
line wrap: on
line source
# In Python 3 the "anydbm" module was renamed to be "dbm" which is now a # package containing the various implementations. The "wichdb" module's # whichdb() function was moved to the new "dbm" module. import sys if sys.version_info[:2] < (2, 6): def key_in(db, key): return db.has_key(key) else: def key_in(db, key): return key in db try: # old school first because <3 had a "dbm" module too... import anydbm from whichdb import whichdb except ImportError: # python 3+ import dbm as anydbm whichdb = anydbm.whichdb
