Mercurial > hg-stable
changeset 47536:8e4b9fe31334
dirstate-entry: add a `mode` property
This is clearer than "tuple" indexing.
Differential Revision: https://phab.mercurial-scm.org/D10979
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Sun, 04 Jul 2021 02:33:21 +0200 |
parents | 6025353c9c55 |
children | 0e5800c88eb4 |
files | mercurial/cext/parsers.c mercurial/dirstate.py mercurial/pure/parsers.py |
diffstat | 3 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cext/parsers.c Sun Jul 04 02:28:08 2021 +0200 +++ b/mercurial/cext/parsers.c Sun Jul 04 02:33:21 2021 +0200 @@ -169,6 +169,11 @@ {NULL} /* Sentinel */ }; +static PyObject *dirstatetuple_get_mode(dirstateTupleObject *self) +{ + return PyInt_FromLong(self->mode); +}; + static PyObject *dirstatetuple_get_state(dirstateTupleObject *self) { return PyBytes_FromStringAndSize(&self->state, 1); @@ -238,6 +243,7 @@ }; static PyGetSetDef dirstatetuple_getset[] = { + {"mode", (getter)dirstatetuple_get_mode, NULL, "mode", NULL}, {"state", (getter)dirstatetuple_get_state, NULL, "state", NULL}, {"tracked", (getter)dirstatetuple_get_tracked, NULL, "tracked", NULL}, {"added", (getter)dirstatetuple_get_added, NULL, "added", NULL},
--- a/mercurial/dirstate.py Sun Jul 04 02:28:08 2021 +0200 +++ b/mercurial/dirstate.py Sun Jul 04 02:33:21 2021 +0200 @@ -1307,7 +1307,7 @@ # general. That is much slower than simply accessing and storing the # tuple members one by one. t = dget(fn) - mode = t[1] + mode = t.mode size = t[2] time = t[3]