
subprocess — Subprocess management — Python 3.14.3 documentation
Mar 25, 2026 · Using the subprocess Module ¶ The recommended approach to invoking subprocesses is to use the run() function for all use cases it can handle. For more advanced use cases, the …
Subprocesses — Python 3.14.3 documentation
3 days ago · Both create_subprocess_exec() and create_subprocess_shell() functions return instances of the Process class. Process is a high-level wrapper that allows communicating with subprocesses …
17.1. subprocess — 子进程管理 — Python 2.7.18 文档
Feb 7, 2018 · 17.1.1. 使用 subprocess 模块 ¶ The recommended way to launch subprocesses is to use the following convenience functions. For more advanced use cases when these do not meet your …
shlex — Simple lexical analysis — Python 3.14.3 documentation
2 days ago · Source code: Lib/shlex.py The shlex class makes it easy to write lexical analyzers for simple syntaxes resembling that of the Unix shell. This will often be useful for writing minilanguages, …
Logging Cookbook — Python 3.14.3 documentation
Logging Cookbook ¶ Author: Vinay Sajip <vinay_sajip at red-dove dot com> This page contains a number of recipes related to logging, which have been found useful in the past. For links to tutorial …
Security Considerations — Python 3.14.3 documentation
2 days ago · ssl: SSL/TLS security considerations subprocess: Subprocess security considerations tempfile: mktemp is deprecated due to vulnerability to race conditions xml: XML security zipfile: …
Platform Support — Python 3.14.3 documentation
2 days ago · The asyncio module is designed to be portable, but some platforms have subtle differences and limitations due to the platforms’ underlying architecture and capabilities. All Platforms: …
Transports and Protocols — Python 3.14.3 documentation
2 days ago · An example of a subprocess protocol used to get the output of a subprocess and to wait for the subprocess exit. The subprocess is created by the loop.subprocess_exec() method:
The Python Standard Library — Python 3.14.3 documentation
Mar 25, 2026 · The Python Standard Library ¶ While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the …
What’s New In Python 3.13 — Python 3.14.3 documentation
2 days ago · What’s New In Python 3.13 ¶ Editors: Adam Turner and Thomas Wouters This article explains the new features in Python 3.13, compared to 3.12. Python 3.13 was released on October …