view roundup/anypy/dbm_.py @ 6054:ffaf89a4a9d9

use jinja2 i18n extension enable autoescape for jinja2 templates
author Christof Meerwald <cmeerw@cmeerw.org>
date Mon, 13 Jan 2020 21:18:42 +0000
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

Roundup Issue Tracker: http://roundup-tracker.org/