Return a new path pointing to the current working directory (as returned by os.getcwd()).
(cls)
| 901 | |
| 902 | @classmethod |
| 903 | def cwd(cls): |
| 904 | """Return a new path pointing to the current working directory |
| 905 | (as returned by os.getcwd()). |
| 906 | """ |
| 907 | return cls(os.getcwd()) |
| 908 | |
| 909 | @classmethod |
| 910 | def home(cls): |