About 26,700 results
Open links in new tab
  1. subprocess — Subprocess management — Python 3.14.0 …

    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.0 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 …

  3. multiprocessing.shared_memory — Shared memory for direct …

    3 days ago · To avoid this issue, users of subprocess or standalone Python processes should set track to False when there is already another process in place that does the bookkeeping. track …

  4. shlex — Simple lexical analysis — Python 3.14.0 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 …

  5. optparse — Parser for command line options - Python

    2 days ago · Introduction ¶ optparse is a more convenient, flexible, and powerful library for parsing command-line options than the minimalist getopt module. optparse uses a more …

  6. multiprocessing — Process-based parallelism — Python 3.14.0 …

    3 days ago · The return value can be 'fork', 'spawn', 'forkserver' or None. See Contexts and start methods. Added in version 3.4. Changed in version 3.8: On macOS, the spawn start method is …

  7. Security Considerations — Python 3.14.0 documentation

    3 days ago · ssl: SSL/TLS security considerations subprocess: Subprocess security considerations tempfile: mktemp is deprecated due to vulnerability to race conditions xml: XML …

  8. What’s New In Python 3.13 — Python 3.15.0a1 documentation

    Nov 3, 2025 · 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 …

  9. The Python Standard Library — Python 3.14.0 documentation

    3 days ago · subprocess — Subprocess management sched — Event scheduler queue — A synchronized queue class contextvars — Context Variables _thread — Low-level threading …

  10. pty — Pseudo-terminal utilities — Python 3.14.0 documentation

    3 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 …