Commit e292a961 authored by Barry Warsaw's avatar Barry Warsaw

Fix a comment (DBEnv.db_home is part of PyBSDDB 3.0).

Remove an unused import.

Don't use the file's revision number in __version__, although keep it
in a comment.  After a recent exchange on python-dev, it wasn't the
right way to extract the revision number anyway.
parent d1f4d07c
......@@ -4,9 +4,8 @@ See Full.py for an implementation of Berkeley storage that does support undo
and versioning.
"""
__version__ = '$Revision: 1.3 $'[11:-2]
import sys
# $Revision: 1.4 $
__version__ = '0.1'
# This uses the Dunn/Kuchling PyBSDDB v3 extension module available from
# http://pybsddb.sourceforge.net
......@@ -46,9 +45,6 @@ class Minimal(BerkeleyBase):
# Begin the current transaction. Currently this just makes sure that
# the commit log is in the proper state.
if self._commitlog is None:
# BAW: the db_home attribute of the DBEnv object is only available
# in a suggested patch to PyBSDDB as of 3.0b4
#
# JF: Chris was getting some weird errors / bizarre behavior from
# Berkeley when using an existing directory or having non-BSDDB
# files in that directory.
......
......@@ -4,9 +4,8 @@ See Full.py for an implementation of Berkeley storage that does support undo
and versioning.
"""
__version__ = '$Revision: 1.3 $'[11:-2]
import sys
# $Revision: 1.4 $
__version__ = '0.1'
# This uses the Dunn/Kuchling PyBSDDB v3 extension module available from
# http://pybsddb.sourceforge.net
......@@ -46,9 +45,6 @@ class Minimal(BerkeleyBase):
# Begin the current transaction. Currently this just makes sure that
# the commit log is in the proper state.
if self._commitlog is None:
# BAW: the db_home attribute of the DBEnv object is only available
# in a suggested patch to PyBSDDB as of 3.0b4
#
# JF: Chris was getting some weird errors / bizarre behavior from
# Berkeley when using an existing directory or having non-BSDDB
# files in that directory.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment