source: trunk/essentials/dev-lang/python/Lib/dbhash.py@ 3298

Last change on this file since 3298 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 404 bytes
Line 
1"""Provide a (g)dbm-compatible interface to bsddb.hashopen."""
2
3import sys
4try:
5 import bsddb
6except ImportError: