Whitespace normalization.

This commit is contained in:
Tim Peters 2007-01-30 03:03:46 +00:00
parent 15c1fe5047
commit f733abb783
21 changed files with 128 additions and 128 deletions

View file

@ -1120,7 +1120,7 @@ class Popen(object):
# we can write up to PIPE_BUF bytes without risk
# blocking. POSIX defines PIPE_BUF >= 512
bytes_written = os.write(self.stdin.fileno(), buffer(input, input_offset, 512))
input_offset += bytes_written
input_offset += bytes_written
if input_offset >= len(input):
self.stdin.close()
write_set.remove(self.stdin)