About 21,900 results
Open links in new tab
  1. subprocess — Subprocess management — Python 3.14.2 documentation

    2 days ago · Information about how the subprocess module can be used to replace these modules and functions can be found in the following sections.

  2. Subprocesses — Python 3.14.2 documentation

    2 days ago · Because all asyncio subprocess functions are asynchronous and asyncio provides many tools to work with such functions, it is easy to execute and monitor multiple subprocesses in parallel.

  3. IDLE — Python editor and shell — Python 3.13.4 documentation

    By default, IDLE executes user code in a separate subprocess via a socket, which uses the internal loopback interface. This connection is not externally visible and no data is sent to or received from …

  4. concurrent.futures — Launching parallel tasks — Python 3.9.24 …

    Mar 9, 2024 · The concurrent.futures module provides a high-level interface for asynchronously executing callables. The asynchronous execution can be performed with threads, using …

  5. What’s New In Python 3.13 — Python 3.15.0a3 documentation

    2 days ago · The subprocess module now uses the posix_spawn() function in more situations, including when close_fds is True (the default) on many modern platforms. This should provide a notable …

  6. Security Considerations — Python 3.14.2 documentation

    5 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: …

  7. The Python Standard Library — Python 3.14.2 documentation

    2 days ago · The concurrent package concurrent.futures — Launching parallel tasks concurrent.interpreters — Multiple interpreters in the same process subprocess — Subprocess …

  8. pty — Pseudo-terminal utilities — Python 3.14.2 documentation

    5 days ago · Source code: Lib/pty.py The pty module defines operations for handling the pseudo-terminal concept: starting another process and being able to write to and read from its controlling …

  9. shlex — Simple lexical analysis — Python 3.14.2 documentation

    3 days ago · Executing commands quoted by this module on such shells can open up the possibility of a command injection vulnerability. Consider using functions that pass command arguments with lists …

  10. socket --- Low-level networking interface — Documentation Python …

    On Windows, the file-like object created by makefile() cannot be used where a file object with a file descriptor is expected, such as the stream arguments of subprocess.Popen().