We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f91ef5 commit fd3137cCopy full SHA for fd3137c
roundup/anypy/dbm_.py
@@ -0,0 +1,12 @@
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
0 commit comments