MCPcopy Create free account
hub / github.com/apache/arrow / __init__

Method __init__

python/pyarrow/tests/test_gdb.py:88–97  ·  view source on GitHub ↗
(self, *args, **env)

Source from the content-addressed store, hash-verified

86 verbose = True
87
88 def __init__(self, *args, **env):
89 # Let stderr through to let pytest display it separately on errors
90 gdb_env = environment_for_gdb()
91 gdb_env.update(env)
92 self.proc = subprocess.Popen(gdb_command + list(args),
93 env=gdb_env, bufsize=0,
94 stdin=subprocess.PIPE,
95 stdout=subprocess.PIPE)
96 self.last_stdout = []
97 self.last_stdout_line = b""
98
99 def wait_until_ready(self):
100 """

Callers

nothing calls this directly

Calls 2

environment_for_gdbFunction · 0.85
listFunction · 0.85

Tested by

no test coverage detected