0

dulwichを ironpython にロードしています。以下のコード例を実行しようとすると、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 issue #7267のようです。2.7.4 に修正できるかどうかを確認します。

于 2013-05-23T15:26:11.197 に答える