summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2011-04-05 14:07:49 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2011-04-05 14:07:49 (GMT)
commit0b9ea93a642d2d11e694b6c469b2419401d59f8d (patch)
treebb183de99dfacbf1e69ed87038ef6c38d0d5e330 /Lib/subprocess.py
parent7a8d08110c08941a5cf4a0785684c81ce0748dfa (diff)
parent02ba73c0ef4e5b6822b585e99f3bd520e83a1c2e (diff)
downloadcpython-0b9ea93a642d2d11e694b6c469b2419401d59f8d.zip
cpython-0b9ea93a642d2d11e694b6c469b2419401d59f8d.tar.gz
cpython-0b9ea93a642d2d11e694b6c469b2419401d59f8d.tar.bz2
Merge with 3.2
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r--Lib/subprocess.py45
1 files changed, 34 insertions, 11 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py
index 2bff4b6..e4bb78e 100644
--- a/Lib/subprocess.py
+++ b/Lib/subprocess.py
@@ -348,6 +348,7 @@ import gc
import signal
import builtins
import warnings
+import errno
# Exception classes used by this module.
class SubprocessError(Exception): pass
@@ -396,7 +397,6 @@ if mswindows:
else:
import select
_has_poll = hasattr(select, 'poll')
- import errno
import fcntl
import pickle
@@ -826,7 +826,11 @@ class Popen(object):
stderr = None
if self.stdin:
if input:
- self.stdin.write(input)
+ try:
+ self.stdin.write(input)
+ except IOError as e:
+ if e.errno != errno.EPIPE and e.errno != errno.EINVAL:
+ raise
self.stdin.close()
elif self.stdout:
stdout = self.stdout.read()
@@ -1104,7 +1108,11 @@ class Popen(object):
if self.stdin:
if input is not None:
- self.stdin.write(input)
+ try:
+ self.stdin.write(input)
+ except IOError as e:
+ if e.errno != errno.EPIPE:
+ raise
self.stdin.close()
# Wait for the reader threads, or time out. If we time out, the
@@ -1621,9 +1629,16 @@ class Popen(object):
if mode & select.POLLOUT:
chunk = self._input[self._input_offset :
self._input_offset + _PIPE_BUF]
- self._input_offset += os.write(fd, chunk)
- if self._input_offset >= len(self._input):
- close_unregister_and_remove(fd)
+ try:
+ self._input_offset += os.write(fd, chunk)
+ except OSError as e:
+ if e.errno == errno.EPIPE:
+ close_unregister_and_remove(fd)
+ else:
+ raise
+ else:
+ if self._input_offset >= len(self._input):
+ close_unregister_and_remove(fd)
elif mode & select_POLLIN_POLLPRI:
data = os.read(fd, 4096)
if not data:
@@ -1691,11 +1706,19 @@ class Popen(object):
if self.stdin in wlist:
chunk = self._input[self._input_offset :
self._input_offset + _PIPE_BUF]
- bytes_written = os.write(self.stdin.fileno(), chunk)
- self._input_offset += bytes_written
- if self._input_offset >= len(self._input):
- self.stdin.close()
- self._write_set.remove(self.stdin)
+ try:
+ bytes_written = os.write(self.stdin.fileno(), chunk)
+ except OSError as e:
+ if e.errno == errno.EPIPE:
+ self.stdin.close()
+ self._write_set.remove(self.stdin)
+ else:
+ raise
+ else:
+ self._input_offset += bytes_written
+ if self._input_offset >= len(self._input):
+ self.stdin.close()
+ self._write_set.remove(self.stdin)
if self.stdout in rlist:
data = os.read(self.stdout.fileno(), 1024)