# HG changeset patch # User Franz Glasner # Date 1737026342 -3600 # Node ID 188de62caac6a0a41a47dc1ceff9cceedcbaf65f # Parent 1b8bc876146ab2184a5771cf1aae3e5f0b3aedf8 Comment WalkDirEntry properties somewhat diff -r 1b8bc876146a -r 188de62caac6 cutils/util/walk.py --- a/cutils/util/walk.py Thu Jan 16 11:31:37 2025 +0100 +++ b/cutils/util/walk.py Thu Jan 16 12:19:02 2025 +0100 @@ -45,18 +45,22 @@ @property def name(self): + """The native name""" return self._name @property def fsname(self): + """The name as bytes""" return self._fsname @property def path(self): + """Always native""" return self._path @property def fspath(self): + """Always bytes""" if self._path is not None: if self._fspath is None: if PY2: