Mercurial > p > roundup > code
view roundup/anypy/dbm_.py @ 5335:e7293df727dc
Working through RELEASE.txt - updates for 1.6 release.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 21 Jun 2018 19:49:26 -0400 |
| parents | d5da643b3d25 |
| children |
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. 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
