diff options
author | Geoff Shannon <earthlingzephyr@gmail.com> | 2019-05-20 15:06:16 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-05-20 15:06:16 (GMT) |
commit | 522ccef8690970fc4f78f51a3adb995f2547871a (patch) | |
tree | c1f25a74a07e59208540d6310135182fd4de92b2 /Doc/library/pty.rst | |
parent | 45a24b85f328ad07296123ebc994553983c7a915 (diff) | |
download | cpython-522ccef8690970fc4f78f51a3adb995f2547871a.zip cpython-522ccef8690970fc4f78f51a3adb995f2547871a.tar.gz cpython-522ccef8690970fc4f78f51a3adb995f2547871a.tar.bz2 |
bpo-22865: Expand on documentation for the pty.spawn function (GH-11980)
Diffstat (limited to 'Doc/library/pty.rst')
-rw-r--r-- | Doc/library/pty.rst | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/Doc/library/pty.rst b/Doc/library/pty.rst index 0ab7660..1226843 100644 --- a/Doc/library/pty.rst +++ b/Doc/library/pty.rst @@ -43,11 +43,32 @@ The :mod:`pty` module defines the following functions: Spawn a process, and connect its controlling terminal with the current process's standard io. This is often used to baffle programs which insist on - reading from the controlling terminal. + reading from the controlling terminal. It is expected that the process + spawned behind the pty will eventually terminate, and when it does *spawn* + will return. + + The functions *master_read* and *stdin_read* are passed a file descriptor + which they should read from, and they should always return a byte string. In + order to force spawn to return before the child process exits an + :exc:`OSError` should be thrown. + + The default implementation for both functions will read and return up to 1024 + bytes each time the function is called. The *master_read* callback is passed + the pseudoterminal’s master file descriptor to read output from the child + process, and *stdin_read* is passed file descriptor 0, to read from the + parent process's standard input. + + Returning an empty byte string from either callback is interpreted as an + end-of-file (EOF) condition, and that callback will not be called after + that. If *stdin_read* signals EOF the controlling terminal can no longer + communicate with the parent process OR the child process. Unless the child + process will quit without any input, *spawn* will then loop forever. If + *master_read* signals EOF the same behavior results (on linux at least). + + If both callbacks signal EOF then *spawn* will probably never return, unless + *select* throws an error on your platform when passed three empty lists. This + is a bug, documented in `issue 26228 <https://bugs.python.org/issue26228>`_. - The functions *master_read* and *stdin_read* should be functions which read from - a file descriptor. The defaults try to read 1024 bytes each time they are - called. .. versionchanged:: 3.4 :func:`spawn` now returns the status value from :func:`os.waitpid` |