We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cf8529 commit 3da86c9Copy full SHA for 3da86c9
domdf_python_tools/paths.py
@@ -316,6 +316,8 @@ class PathPlus(pathlib.Path):
316
Defaults to Unix line endings (``LF``) on all platforms.
317
"""
318
319
+ __slots__ = ('_accessor', )
320
+
321
def __new__(cls, *args, **kwargs): # noqa D102
322
if cls is PathPlus:
323
cls = WindowsPathPlus if os.name == "nt" else PosixPathPlus
0 commit comments