summaryrefslogtreecommitdiff
path: root/apt/progress/__init__.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2009-09-03 08:46:33 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2009-09-03 08:46:33 +0200
commit0d4a8172a7bceac5bdca37cc199d9bfba889cc4f (patch)
tree0f650ed3fdee2c7f2cdc69a5e2620f81601ddee0 /apt/progress/__init__.py
parent0aa3f4f3ce25a499a332c23f9493e629f30013dc (diff)
downloadpython-apt-0d4a8172a7bceac5bdca37cc199d9bfba889cc4f.tar.gz
apt/progress/__init__.py: doc update
Diffstat (limited to 'apt/progress/__init__.py')
-rw-r--r--apt/progress/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/apt/progress/__init__.py b/apt/progress/__init__.py
index 337bd161..3a6b3f91 100644
--- a/apt/progress/__init__.py
+++ b/apt/progress/__init__.py
@@ -284,7 +284,11 @@ class InstallProgress(DumbInstallProgress):
return os.fork()
def waitChild(self):
- """Wait for child progress to exit."""
+ """Wait for child progress to exit.
+
+ The return values is the full status returned from os.waitpid()
+ (not only the return code).
+ """
while True:
try:
select.select([self.statusfd], [], [], self.selectTimeout)