Ironpython模块没有属性fsync

时间:2013-05-21 07:34:41

标签: ironpython

我正在将dulwich加载到ironpython中,当我尝试从How to pull from the remote using dulwich?

运行下面的示例代码时
from dulwich.repo import Repo
from dulwich.client import HttpGitClient
local = Repo.init("local", mkdir=True)
client = HttpGitClient('http://github.com/adammorris/')
remote_refs = client.fetch("history.js.git",local)
local["HEAD"] = remote_refs["refs/heads/master"]

我得到:AttributeError: 'module' object has no attribute 'fsync'

我知道在AttributeError: 'module' object has no attribute '_getframe'传递-X:Frames的情况下,启用适当的呼叫,默认情况下由于性能原因而禁用。这是一个类似的案例,如果不是,我该怎么办?

编辑: screencap of traceback

1 个答案:

答案 0 :(得分:0)

这看起来像IronPython issue #7267。我会看看能不能修复2.7.4。