About 41,700 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.12.12 documentation

    Mar 12, 2012 · 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. Concurrent Execution — Python 3.14.2 documentation

    1 day ago · subprocess — Subprocess management Using the subprocess Module Frequently Used Arguments Popen Constructor Exceptions Security Considerations Popen Objects Windows Popen …

  4. IDLE — Python editor and shell — Python 3.15.0a3 documentation

    2 days ago · 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 …

  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. shlex — Simple lexical analysis — Python 3.14.2 documentation

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

  7. Security Considerations — Python 3.14.2 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 security zipfile: …

  8. The Python Standard Library — Python 3.14.2 documentation

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

  9. multiprocessing.shared_memory — Shared memory for direct access …

    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 is ignored …

  10. multiprocessing — Process-based parallelism — Python 3.14.2 …

    2 days ago · The fork start method should be considered unsafe as it can lead to crashes of the subprocess as macOS system libraries may start threads. See bpo-33725. Changed in version 3.14: …