[3.8] bpo-39808: Improve docs for pathlib.Path.stat() (GH-18719) (GH-18783)



(cherry picked from commit 67152d0ed670227b61b5df683655b196ab04ca1a)


Co-authored-by: Brett Cannon <54418+brettcannon@users.noreply.github.com>

Automerge-Triggered-By: @brettcannon
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst
index 326bb2e..0340814 100644
--- a/Doc/library/pathlib.rst
+++ b/Doc/library/pathlib.rst
@@ -672,7 +672,7 @@
 
 .. method:: Path.stat()
 
-   Return information about this path (similarly to :func:`os.stat`).
+   Return a :class:`os.stat_result` object containing information about this path, like :func:`os.stat`.
    The result is looked up at each call to this method.
 
    ::