Ironpython module has no attribute fsync -
i'm loading dulwich ironpython , when try run example code below how pull remote using dulwich?
from dulwich.repo import repo 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"] i get: attributeerror: 'module' object has no attribute 'fsync'.
i know in case of attributeerror: 'module' object has no attribute '_getframe' passing -x:frames enables appropriate call disabled default performance reasons. similar case , if not how should proceed?
edit: 
this looks ironpython issue #7267. i'll see if can fix 2.7.4.
Comments
Post a Comment