Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/upath/types/_abc.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""pathlib_abc exports for compatibility with pathlib."""
3from pathlib_abc import JoinablePath
4from pathlib_abc import PathInfo
5from pathlib_abc import PathParser
6from pathlib_abc import ReadablePath
7from pathlib_abc import WritablePath
8from pathlib_abc import vfsopen
9from pathlib_abc import vfspath
11__all__ = [
12 "JoinablePath",
13 "ReadablePath",
14 "WritablePath",
15 "PathInfo",
16 "PathParser",
17 "vfsopen",
18 "vfspath",
19]