1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- from pathlib import Path, PurePath
- from dataclasses import dataclass
- from typing import Union
- from transparentpath import TransparentPath
- @dataclass
- class VirtualPathEntry:
- pass
- class VirtualPath(Path):
- def cwd(self):
- pass
- def exists(self):
- pass
- def glob(self):
- pass
- def is_dir(self):
- pass
- def is_file(self):
- pass
- def iterdir(self):
- pass
- def lstat(self):
- return self.stat()
- def open(self):
- pass
- def stat(self):
- pass
|