Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
60bb940b
Commit
60bb940b
authored
Nov 01, 2001
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
close(): Don't close the commit log, since the base class's close()
will do this.
parent
184417f9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
lib/python/BDBStorage/BDBMinimalStorage.py
lib/python/BDBStorage/BDBMinimalStorage.py
+1
-3
lib/python/BDBStorage/Minimal.py
lib/python/BDBStorage/Minimal.py
+1
-3
No files found.
lib/python/BDBStorage/BDBMinimalStorage.py
View file @
60bb940b
...
...
@@ -4,7 +4,7 @@ See Full.py for an implementation of Berkeley storage that does support undo
and versioning.
"""
__version__
=
'$Revision: 1.1
0
$'
[
-
2
:][
0
]
__version__
=
'$Revision: 1.1
1
$'
[
-
2
:][
0
]
# This uses the Dunn/Kuchling PyBSDDB v3 extension module available from
# http://pybsddb.sourceforge.net. It is compatible with release 3.0 of
...
...
@@ -122,8 +122,6 @@ class Minimal(BerkeleyBase):
# that just to reclaim the garbage?
self
.
_serials
.
close
()
self
.
_pickles
.
close
()
if
self
.
_commitlog
is
not
None
:
self
.
_commitlog
.
close
()
# Base class implements some useful close behavior
BerkeleyBase
.
close
(
self
)
...
...
lib/python/BDBStorage/Minimal.py
View file @
60bb940b
...
...
@@ -4,7 +4,7 @@ See Full.py for an implementation of Berkeley storage that does support undo
and versioning.
"""
__version__
=
'$Revision: 1.1
0
$'
[
-
2
:][
0
]
__version__
=
'$Revision: 1.1
1
$'
[
-
2
:][
0
]
# This uses the Dunn/Kuchling PyBSDDB v3 extension module available from
# http://pybsddb.sourceforge.net. It is compatible with release 3.0 of
...
...
@@ -122,8 +122,6 @@ class Minimal(BerkeleyBase):
# that just to reclaim the garbage?
self
.
_serials
.
close
()
self
.
_pickles
.
close
()
if
self
.
_commitlog
is
not
None
:
self
.
_commitlog
.
close
()
# Base class implements some useful close behavior
BerkeleyBase
.
close
(
self
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment