Python2.7.5中的搁置模块创建了不同的数据库文件

时间:2015-04-15 01:42:07

标签: python python-2.7 shelve

我想通过 Python2.7.5 中的搁置模块创建数据库。 但是,shelve模块在我的两个环境中创建了不同的数据库文件。

MacBookAir的案例

import shelve
shelve.open("todo") # -> create 'todo.db'

Windows7

的情况
import shelve
shelve.open("todo") # -> create 'todo'

MacBookAir和Windows7,两者都使用相同的Python2.7.5。 我已经检查了搁置模块源代码的差异,但我发现没有任何区别。

为什么?

0 个答案:

没有答案