annotate mercurial/templates/json/graph.tmpl @ 39820:68ea1f8dcb84

py3: proxy posixfile objects to re-add a useful 'name' attribute on Windows This file object is used in the vfs layer, so there are many errors like this: ... File "mercurial\localrepo.py", line 2569, in savecommitmessage return self.pathto(fp.name[len(self.root) + 1:]) TypeError: 'int' object is not subscriptable It looks like the 'name' value is actually the fileno() value, and the documentation says the name parameter to PyFile_FromFd() is ignored. [1] I tried just assigning the attribute after osutil.posixfile() returns, but that crashes saying that it's read-only. [1] https://docs.python.org/3.6/c-api/file.html
author Matt Harbison <matt_harbison@yahoo.com>
date Fri, 21 Sep 2018 20:03:07 -0400
parents b963750b125f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
35389
b963750b125f hgweb: implement json-graph
Anton Shestakov <av6@dwimlabs.net>
parents:
diff changeset
1 \{
b963750b125f hgweb: implement json-graph
Anton Shestakov <av6@dwimlabs.net>
parents:
diff changeset
2 "node": {node|json},
b963750b125f hgweb: implement json-graph
Anton Shestakov <av6@dwimlabs.net>
parents:
diff changeset
3 "changeset_count": {changesets|json},
b963750b125f hgweb: implement json-graph
Anton Shestakov <av6@dwimlabs.net>
parents:
diff changeset
4 "changesets": [{join(nodes%graphentry, ", ")}]
b963750b125f hgweb: implement json-graph
Anton Shestakov <av6@dwimlabs.net>
parents:
diff changeset
5 }