Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Donate
Please sign in before you donate.
Scan WeChat QR to Pay
Cancel
Complete
Prompt
Switch to Alipay.
OK
Cancel
1 Star 0 Fork 0

source-code-analysis/python3.8.1

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
master
Branches (1)
master
master
Branches (1)
master
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (1)
master
pty.rst 4.29 KB
Copy Edit Raw Blame History
zhangweibo authored 2021年11月16日 09:46 +08:00 . git init

:mod:`pty` --- Pseudo-terminal utilities

.. module:: pty
 :platform: Linux
 :synopsis: Pseudo-Terminal Handling for Linux.

.. moduleauthor:: Steen Lumholt
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>

Source code: :source:`Lib/pty.py`


The :mod:`pty` module defines operations for handling the pseudo-terminal concept: starting another process and being able to write to and read from its controlling terminal programmatically.

Because pseudo-terminal handling is highly platform dependent, there is code to do it only for Linux. (The Linux code is supposed to work on other platforms, but hasn't been tested yet.)

The :mod:`pty` module defines the following functions:

.. function:: fork()

 Fork. Connect the child's controlling terminal to a pseudo-terminal. Return
 value is ``(pid, fd)``. Note that the child gets *pid* 0, and the *fd* is
 *invalid*. The parent's return value is the *pid* of the child, and *fd* is a
 file descriptor connected to the child's controlling terminal (and also to the
 child's standard input and output).


.. function:: openpty()

 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
 emulation code for generic Unix systems. Return a pair of file descriptors
 ``(master, slave)``, for the master and the slave end, respectively.


.. function:: spawn(argv[, master_read[, stdin_read]])

 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. 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>`_.


 .. versionchanged:: 3.4
 :func:`spawn` now returns the status value from :func:`os.waitpid`
 on the child process.

Example

.. sectionauthor:: Steen Lumholt

The following program acts like the Unix command :manpage:`script(1)`, using a pseudo-terminal to record all input and output of a terminal session in a "typescript".

import argparse
import os
import pty
import sys
import time

parser = argparse.ArgumentParser()
parser.add_argument('-a', dest='append', action='store_true')
parser.add_argument('-p', dest='use_python', action='store_true')
parser.add_argument('filename', nargs='?', default='typescript')
options = parser.parse_args()

shell = sys.executable if options.use_python else os.environ.get('SHELL', 'sh')
filename = options.filename
mode = 'ab' if options.append else 'wb'

with open(filename, mode) as script:
 def read(fd):
 data = os.read(fd, 1024)
 script.write(data)
 return data

 print('Script started, file is', filename)
 script.write(('Script started on %s\n' % time.asctime()).encode())

 pty.spawn(shell, read)

 script.write(('Script done on %s\n' % time.asctime()).encode())
 print('Script done, file is', filename)
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

Cancel

Releases

No release

Contributors

All

Language(Optional)

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.8.1.git
git@gitee.com:python_sourcecode/python3.8.1.git
python_sourcecode
python3.8.1
python3.8.1
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /