Staging
v0.5.1
https://github.com/python/cpython
Revision ba0b6aeda605bec73c90f93fc05dd1cbc4efa9d3 authored by cvs2svn on 12 January 1995, 12:42:09 UTC, committed by cvs2svn on 12 January 1995, 12:42:09 UTC
1 parent 4f9181e
Raw File
Tip revision: ba0b6aeda605bec73c90f93fc05dd1cbc4efa9d3 authored by cvs2svn on 12 January 1995, 12:42:09 UTC
This commit was manufactured by cvs2svn to create tag 'r12beta1'.
Tip revision: ba0b6ae
anydbm.py
"""A generic interface to all dbm clones."""

try:
	import dbm
	def open(file, mode = 'rw'):
		return dbm.open(file, mode, 0666)
except ImportError:
	import dbmac
	open = dbmac.open
back to top