aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/portage/util/futures/unix_events.py')
-rw-r--r--lib/portage/util/futures/unix_events.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/portage/util/futures/unix_events.py b/lib/portage/util/futures/unix_events.py
index 6cd0848f7..16a9e12b7 100644
--- a/lib/portage/util/futures/unix_events.py
+++ b/lib/portage/util/futures/unix_events.py
@@ -433,7 +433,7 @@ class _UnixWritePipeTransport(_FlowControlMixin, _WriteTransport):
return
if n == len(data):
return
- elif n > 0:
+ if n > 0:
data = memoryview(data)[n:]
self._loop.add_writer(self._fileno, self._write_ready)
@@ -463,7 +463,7 @@ class _UnixWritePipeTransport(_FlowControlMixin, _WriteTransport):
self._loop.remove_reader(self._fileno)
self._call_connection_lost(None)
return
- elif n > 0:
+ if n > 0:
del self._buffer[:n]
def can_write_eof(self):
@@ -617,10 +617,9 @@ class _PortageChildWatcher(_AbstractChildWatcher):
def _compute_returncode(self, status):
if os.WIFSIGNALED(status):
return -os.WTERMSIG(status)
- elif os.WIFEXITED(status):
+ if os.WIFEXITED(status):
return os.WEXITSTATUS(status)
- else:
- return status
+ return status
def add_child_handler(self, pid, callback, *args):
"""