Mercurial > p > roundup > code
annotate roundup/anypy/dbm_.py @ 4360:661466ba19cd
add missing file
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 23 Feb 2010 22:54:59 +0000 |
| parents | |
| children | 0d9369d35483 |
| rev | line source |
|---|---|
| 4360 | 1 # In Python 3 the "anydbm" module was renamed to be "dbm" which is now a |
| 2 # package containing the various implementations. The "wichdb" module's | |
| 3 # whichdb() function was moved to the new "dbm" module. | |
| 4 | |
| 5 try: | |
| 6 # old school first because <3 had a "dbm" module too... | |
| 7 import anydbm | |
| 8 from whichdb import whichdb | |
| 9 except ImportError: | |
| 10 # python 3+ | |
| 11 import dbm as anydbm | |
| 12 whichdb = anydbm.whichdb |
