*path* is a `.Path` object. Valid keyword arguments are: %(Patch:kwdoc)s
(self, path, **kwargs)
| 1104 | |
| 1105 | @_docstring.interpd |
| 1106 | def __init__(self, path, **kwargs): |
| 1107 | """ |
| 1108 | *path* is a `.Path` object. |
| 1109 | |
| 1110 | Valid keyword arguments are: |
| 1111 | |
| 1112 | %(Patch:kwdoc)s |
| 1113 | """ |
| 1114 | super().__init__(**kwargs) |
| 1115 | self._path = path |
| 1116 | |
| 1117 | def get_path(self): |
| 1118 | return self._path |