Python`shelve`只读模式不起作用

问题描述 投票:2回答:1

shelve只读模式坏了吗?文档说flag参数按照dbm.open中的说明工作,所以我想如果我在读模式下打开,我就不能更改搁置对象。

页面here似乎也建议修改以只读方式打开的搁置对象应引发异常。但我仍然能够做到以下几点:

Python 3.7.2 (default, Dec 29 2018, 06:19:36) 
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import shelve
>>> with shelve.open('testdata') as shelf:
...      shelf['two'] = 2222
...      shelf['one'] = 1111
... 

接下来我将用flag='r'writeback=False打开它,以确定。但我能够修改对象。

>>> with shelve.open('testdata', flag='r', writeback=False) as shelf:
...     for k, v in shelf.items():
...             print('Key: ', k, ' Value: ', v)
...     shelf['two'] = 1111
...     shelf['one'] = 2222
... 
Key:  one  Value:  1111
Key:  two  Value:  2222

只是为了确认,打开并再次打印它表明该对象确实发生了变化:

>>> with shelve.open('testdata', flag='r', writeback=False) as shelf:
...     for k, v in shelf.items():
...             print('Key: ', k, ' Value: ', v)
... 
Key:  one  Value:  2222
Key:  two  Value:  1111

我错过了什么?这可能与dbm在不同系统上的选择/实现有关吗?在链接页面上运行代码也不会导致:ERROR: cannot add item to database正如页面所说的那样。

更新:当我使用早期版本的Python时,链接页面中的代码按预期工作,即引发和错误,即:

Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.

以及在MacOS上:

Python 3.6.5 |Anaconda, Inc.| (default, Apr 26 2018, 08:42:37)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

在Ubuntu 18.04上有3.7.2,事情就崩溃了。如果文件名的扩展名为“.db”,则表示:

dbm.error: db type is dbm.gnu, but the module is not available

没有扩展名,只读模式不起作用。

python python-3.7 shelve
1个回答
0
投票

我跟踪了ndbm中使用gdbmdumbimplementation的情况。在使用ndbmgdbm模块打开flag='r'的分布上按预期工作。但是,(至少在Ubuntu 18.04上使用Python 3.7.2 by Anaconda)如果正在使用dumb,那么行为如上所述,并且只读标志不会阻止写入。

出于某种原因,Anaconda没有使用系统上安装的python3-gdbm。将库从系统文件复制到anaconda环境,如上所述here解决了这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.