summaryrefslogtreecommitdiff
path: root/apt/progress
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-01-13 14:36:58 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2010-01-13 14:36:58 +0100
commit71aad7e28bbaf1ee8efdad77ebfb4e4c0fd0ec26 (patch)
tree4db1908b3d8d4896d39b7788488f2bfb141e138f /apt/progress
parent469ac5b1a7c069d3822bd36cb74958ce3de19c87 (diff)
parent1da29f8e4e578e00e5703a7db7dc8e8d3c7a08bd (diff)
downloadpython-apt-71aad7e28bbaf1ee8efdad77ebfb4e4c0fd0ec26.tar.gz
* apt/progress/__init__.py:
- Fix InstallProgress.updateInterface() to cope with read() returning 0 on non-blocking file descriptors (LP: #491027). * apt/cache.py: - improved docstring for the cache - add "enhances" property * data/templates/Ubuntu.info.in: - add lucid * python/cache.cc: - add UntranslatedDepType attribute to DependencyType - add DepTypeEnum that returns a value from {DepDepends, DepPreDepends, ...} * python/apt_pkgmodule.cc: - add DepDpkgBreaks, DepEnhances constants * doc/source/apt_pkg/{cache.rst, index.rst}: - update documentation as well
Diffstat (limited to 'apt/progress')
-rw-r--r--apt/progress/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/apt/progress/__init__.py b/apt/progress/__init__.py
index 8a9eb86f..8694de77 100644
--- a/apt/progress/__init__.py
+++ b/apt/progress/__init__.py
@@ -246,7 +246,10 @@ class InstallProgress(DumbInstallProgress):
return
try:
while not self.read.endswith("\n"):
- self.read += os.read(self.statusfd.fileno(), 1)
+ r = os.read(self.statusfd.fileno(), 1)
+ if not r:
+ return
+ self.read += r
except OSError, (errno_, errstr):
# resource temporarly unavailable is ignored
if errno_ != errno.EAGAIN and errno_ != errno.EWOULDBLOCK: