From efa71fcb34e5a9d34b34474326af67d082ad9b4a Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 28 Dec 2024 11:22:33 -0500 Subject: [PATCH] Add 'Traversal' to __all__ so it shows up in docs. --- path/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/path/__init__.py b/path/__init__.py index d99bfa5..d05891c 100644 --- a/path/__init__.py +++ b/path/__init__.py @@ -92,7 +92,7 @@ from . import classes, masks, matchers from .compat.py38 import removeprefix, removesuffix -__all__ = ['Path', 'TempDir'] +__all__ = ['Path', 'TempDir', 'Traversal'] LINESEPS = ['\r\n', '\r', '\n'] U_LINESEPS = LINESEPS + ['\u0085', '\u2028', '\u2029']