diff options
| author | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 (GMT) | 
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 (GMT) | 
| commit | f733abb7831d6566cb0fccd0550d58ec3b7f05a4 (patch) | |
| tree | 4466e9eccc1b441e60841c16d48915f20216178e /Lib/subprocess.py | |
| parent | 15c1fe5047f94942f1e784ac7614f9f5370adb47 (diff) | |
| download | cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.zip cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.gz cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.bz2  | |
Whitespace normalization.
Diffstat (limited to 'Lib/subprocess.py')
| -rw-r--r-- | Lib/subprocess.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 8b25c2f..de88763 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -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)  | 
