Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 330937
Collapse All | Expand All

(-)a/pym/_emerge/SpawnProcess.py (-1 / +2 lines)
Lines 148-154 class SpawnProcess(SubProcess): Link Here
148
			buf = array.array('B')
148
			buf = array.array('B')
149
			try:
149
			try:
150
				buf.fromfile(files.process, self._bufsize)
150
				buf.fromfile(files.process, self._bufsize)
151
			except EOFError:
151
			# EOFError was raised in Python <2.6.6 and <2.7.1.
152
			except (EOFError, IOError):
152
				pass
153
				pass
153
154
154
			if buf:
155
			if buf:

Return to bug 330937