Lines Matching refs:stdin
92 stdin=subprocess.PIPE,
102 stdin=StdinReader.from_environ(environ),
164 def __init__(self, stdin, content_length): argument
165 self.stdin = stdin
181 text = self.stdin.read(self.content_length)
183 text = self.stdin.read(min(self.content_length, size))
187 def proc_communicate(proc, stdin=None, stdout=None, stderr=None): argument
202 if proc.stdin:
205 proc.stdin.flush()
207 write_set.append(proc.stdin)
209 proc.stdin.close()
211 assert stdin is None
224 if proc.stdin in wlist:
231 next += stdin.read(next_len)
233 proc.stdin.close()
234 write_set.remove(proc.stdin)
236 bytes_written = os.write(proc.stdin.fileno(), next)