File: _posixsubprocess.pyi

package info (click to toggle)
mypy 0.470-complete-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,864 kB
  • ctags: 3,264
  • sloc: python: 21,838; makefile: 18
file content (13 lines) | stat: -rw-r--r-- 491 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# Stubs for _posixsubprocess

# NOTE: These are incomplete!

from typing import Tuple, Sequence

def cloexec_pipe() -> Tuple[int, int]: ...
def fork_exec(args: Sequence[str],
              executable_list, close_fds, fds_to_keep, cwd: str, env_list,
              p2cread: int, p2cwrite: int, c2pred: int, c2pwrite: int,
              errread: int, errwrite: int, errpipe_read: int,
              errpipe_write: int, restore_signals, start_new_session,
              preexec_fn) -> int: ...