3
正如您在下面看到的,我在Linux(RHEL)上運行Python 2.6,但由於某些原因它沒有os.O_EXLOCK。爲什麼有一些原因?有沒有辦法解決這個問題?在Linux上Python中不存在os.O_EXLOCK(獨佔鎖)
Python 2.6.5 (r265:79063, Apr 9 2010, 11:16:46)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.O_EXLOCK
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'O_EXLOCK'
>>> os.O_DSYNC
4096
>>>
看起來BSD特有的,例如,iOS具有'os.O_EXLOCK'。 – jfs
@Kyo,在你的操作系統中,你會注意到'man 2 open'沒有列出'O_EXLOCK'。看起來只有那些在'os'模塊中列出的選項的交集可以預期可用。 –