Issue #13530: Document os.lseek() result
Patch written by Jérémy Anger.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 66cd153..673877a 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -5687,7 +5687,8 @@
PyDoc_STRVAR(posix_lseek__doc__,
"lseek(fd, pos, how) -> newpos\n\n\
-Set the current position of a file descriptor.");
+Set the current position of a file descriptor.\n\
+Return the new cursor position in bytes, starting from the beginning.");
static PyObject *
posix_lseek(PyObject *self, PyObject *args)