diff options
Diffstat (limited to 'library/python')
-rw-r--r-- | library/python/runtime_py3/sitecustomize.pyx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/python/runtime_py3/sitecustomize.pyx b/library/python/runtime_py3/sitecustomize.pyx index 9171a56174..8d30073d7d 100644 --- a/library/python/runtime_py3/sitecustomize.pyx +++ b/library/python/runtime_py3/sitecustomize.pyx @@ -42,6 +42,9 @@ class ArcadiaTraversable(Traversable): def suffix(self): return self._path.suffix + @property + def stem(self): + return self._path.stem class ArcadiaResource(ArcadiaTraversable): |