File: _abc.py

package info (click to toggle)
universal-pathlib 0.3.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,656 kB
  • sloc: python: 20,552; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 441 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""pathlib_abc exports for compatibility with pathlib."""

from pathlib_abc import JoinablePath
from pathlib_abc import PathInfo
from pathlib_abc import PathParser
from pathlib_abc import ReadablePath
from pathlib_abc import WritablePath
from pathlib_abc import vfsopen
from pathlib_abc import vfspath

__all__ = [
    "JoinablePath",
    "ReadablePath",
    "WritablePath",
    "PathInfo",
    "PathParser",
    "vfsopen",
    "vfspath",
]