0

我正在将 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启用适当的调用,出于性能原因默认禁用该调用。这是一个类似的情况,如果不是,我应该如何处理?

编辑: 回溯的屏幕截图

4

1 回答 1

0

这看起来像IronPython 问题 #7267。我会看看我是否可以修复 2.7.4。

于 2013-05-23T15:26:11.197 回答