]> granicus.if.org Git - python/commit
bpo-34825: Add more entries to os to pathlib reference table (GH-9608)
authorXtreak <tirkarthi@users.noreply.github.com>
Fri, 5 Oct 2018 15:24:11 +0000 (20:54 +0530)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 5 Oct 2018 15:24:11 +0000 (08:24 -0700)
commit6f9c55d1c0bb399911ded00bb6b3e6f43a514ea2
treefa820d732535f017f5521df794edd6a4e6cbf2c6
parent07fbbfde1b300369b4f8d1cfb80045fbb23b7091
bpo-34825: Add more entries to os to pathlib reference table (GH-9608)

The added functions are as below :

| os module     | Pathlib       |
| ------------- | ------------- |
| os.chmod   | Path.chmod  |
| os.mkdir  | Path.mkdir  |
| os.rename | Path.rename |
| os.replace | Path.replace |
| os.rmdir  | Path.rmdir |
| os.remove, os.unlink | Path.unlink |
| os.path.samefile | Path.samefile |

Thanks

https://bugs.python.org/issue34825
Doc/library/pathlib.rst