mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Added a 'sync' method to shelve. If the underlying database does not have a sync
attribute, this method silently ignores this fact. The default (bsddb's dbhash) does.
This commit is contained in:
parent
e8e87999ab
commit
4fc7067055
1 changed files with 4 additions and 0 deletions
|
@ -72,6 +72,10 @@ class Shelf:
|
|||
def __del__(self):
|
||||
self.close()
|
||||
|
||||
def sync(self):
|
||||
if hasattr(self.dict, 'sync'):
|
||||
self.dict.sync()
|
||||
|
||||
|
||||
class BsdDbShelf(Shelf):
|
||||
"""Shelf implementation using the "BSD" db interface.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue