diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-03 08:46:33 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-03 08:46:33 +0200 |
| commit | 0d4a8172a7bceac5bdca37cc199d9bfba889cc4f (patch) | |
| tree | 0f650ed3fdee2c7f2cdc69a5e2620f81601ddee0 /apt/progress/__init__.py | |
| parent | 0aa3f4f3ce25a499a332c23f9493e629f30013dc (diff) | |
| download | python-apt-0d4a8172a7bceac5bdca37cc199d9bfba889cc4f.tar.gz | |
apt/progress/__init__.py: doc update
Diffstat (limited to 'apt/progress/__init__.py')
| -rw-r--r-- | apt/progress/__init__.py | 6 |
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) |
