summaryrefslogtreecommitdiff
path: root/Lib/dbm/dumb.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-02-04 09:35:10 +0300
committerBerker Peksag <berker.peksag@gmail.com>2017-02-04 09:35:10 +0300
commit20d55dda2a4995d33e79acd880c5fccfa54937e4 (patch)
tree5504aaa962c1d6d97fad4b805d0898372f68202e /Lib/dbm/dumb.py
parent3821030b7ba4a7ff5d34c33deff4f6886130a951 (diff)
parentb53991455f7f258ede7a26b69c2be5b8138b9f8a (diff)
downloadcpython-20d55dda2a4995d33e79acd880c5fccfa54937e4.tar.gz
Issue #29198: Merge from 3.6
Diffstat (limited to 'Lib/dbm/dumb.py')
-rw-r--r--Lib/dbm/dumb.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/dbm/dumb.py b/Lib/dbm/dumb.py
index 2296dbfd54..c3c4a66601 100644
--- a/Lib/dbm/dumb.py
+++ b/Lib/dbm/dumb.py
@@ -68,7 +68,7 @@ class _Database(collections.MutableMapping):
# Handle the creation
self._create(flag)
- self._update()
+ self._update(flag)
def _create(self, flag):
if flag == 'n':
@@ -92,12 +92,17 @@ class _Database(collections.MutableMapping):
f.close()
# Read directory file into the in-memory index dict.
- def _update(self):
+ def _update(self, flag):
self._index = {}
try:
f = _io.open(self._dirfile, 'r', encoding="Latin-1")
except OSError:
self._modified = not self._readonly
+ if flag not in ('c', 'n'):
+ import warnings
+ warnings.warn("The index file is missing, the "
+ "semantics of the 'c' flag will be used.",
+ DeprecationWarning, stacklevel=4)
else:
self._modified = False
with f: