Return a new path pointing to the user's home directory (as returned by os.path.expanduser('~')).
(cls)
| 908 | |
| 909 | @classmethod |
| 910 | def home(cls): |
| 911 | """Return a new path pointing to the user's home directory (as |
| 912 | returned by os.path.expanduser('~')). |
| 913 | """ |
| 914 | return cls("~").expanduser() |
| 915 | |
| 916 | def samefile(self, other_path): |
| 917 | """Return whether other_path is the same or not as this file |
nothing calls this directly
no test coverage detected