changeset: 94119:4a55b98314cd user: Antoine Pitrou date: Mon Jan 12 21:03:41 2015 +0100 files: Doc/library/pathlib.rst Lib/pathlib.py Lib/test/test_pathlib.py Misc/ACKS Misc/NEWS description: Issue #19777: Provide a home() classmethod on Path objects. Contributed by Victor Salgado and Mayank Tripathi. diff -r 8b3c609f3f73 -r 4a55b98314cd Doc/library/pathlib.rst --- a/Doc/library/pathlib.rst Sun Jan 11 15:53:02 2015 -0500 +++ b/Doc/library/pathlib.rst Mon Jan 12 21:03:41 2015 +0100 @@ -628,6 +628,17 @@ PosixPath('/home/antoine/pathlib') +.. classmethod:: Path.home() + + Return a new path object representing the user's home directory (as + returned by :func:`os.path.expanduser` with ``~`` construct):: + + >>> Path.home() + PosixPath('/home/antoine') + + .. versionadded:: 3.5 + + .. method:: Path.stat() Return information about this path (similarly to :func:`os.stat`). diff -r 8b3c609f3f73 -r 4a55b98314cd Lib/pathlib.py --- a/Lib/pathlib.py Sun Jan 11 15:53:02 2015 -0500 +++ b/Lib/pathlib.py Mon Jan 12 21:03:41 2015 +0100 @@ -1008,6 +1008,13 @@ """ return cls(os.getcwd()) + @classmethod + def home(cls): + """Return a new path pointing to the user's home directory (as + returned by os.path.expanduser('~')). + """ + return cls(cls()._flavour.gethomedir(None)) + def samefile(self, other_path): """Return whether `other_file` is the same or not as this file. (as returned by os.path.samefile(file, other_file)). diff -r 8b3c609f3f73 -r 4a55b98314cd Lib/test/test_pathlib.py --- a/Lib/test/test_pathlib.py Sun Jan 11 15:53:02 2015 -0500 +++ b/Lib/test/test_pathlib.py Mon Jan 12 21:03:41 2015 +0100 @@ -1261,6 +1261,17 @@ p = self.cls.cwd() self._test_cwd(p) + def _test_home(self, p): + q = self.cls(os.path.expanduser('~')) + self.assertEqual(p, q) + self.assertEqual(str(p), str(q)) + self.assertIs(type(p), type(q)) + self.assertTrue(p.is_absolute()) + + def test_home(self): + p = self.cls.home() + self._test_home(p) + def test_samefile(self): fileA_path = os.path.join(BASE, 'fileA') fileB_path = os.path.join(BASE, 'dirB', 'fileB') diff -r 8b3c609f3f73 -r 4a55b98314cd Misc/ACKS --- a/Misc/ACKS Sun Jan 11 15:53:02 2015 -0500 +++ b/Misc/ACKS Mon Jan 12 21:03:41 2015 +0100 @@ -1201,6 +1201,7 @@ Suman Saha Hajime Saitou George Sakkis +Victor Salgado Rich Salz Kevin Samborn Adrian Sampson @@ -1390,6 +1391,7 @@ Nathan Trapuzzano Laurence Tratt Alberto Trevino +Mayank Tripathi Matthias Troffaes Tom Tromey John Tromp diff -r 8b3c609f3f73 -r 4a55b98314cd Misc/NEWS --- a/Misc/NEWS Sun Jan 11 15:53:02 2015 -0500 +++ b/Misc/NEWS Mon Jan 12 21:03:41 2015 +0100 @@ -203,6 +203,9 @@ Library ------- +- Issue #19777: Provide a home() classmethod on Path objects. Contributed + by Victor Salgado and Mayank Tripathi. + - Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the default case of ``ensure_ascii=True``. Patch by Naoki Inada.