diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-08-15 18:45:07 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-08-15 18:45:07 +0000 |
commit | 46da22f6de519fb48177b6194536b0704977bf5d (patch) | |
tree | 08913b7435bc23d155f0033b01062a2e73c9575d | |
parent | ba37d56edc4133d6c1f533afe59749cd2056eeb2 (diff) | |
download | portage-46da22f6de519fb48177b6194536b0704977bf5d.tar.gz portage-46da22f6de519fb48177b6194536b0704977bf5d.tar.bz2 portage-46da22f6de519fb48177b6194536b0704977bf5d.zip |
For consistency, make get_open_fds() return a plain iterator in any case,
rather than return a list in some cases.
svn path=/main/trunk/; revision=11418
-rw-r--r-- | pym/portage/process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/process.py b/pym/portage/process.py index 6a8a59ff7..3bc6bd1a8 100644 --- a/pym/portage/process.py +++ b/pym/portage/process.py @@ -21,8 +21,8 @@ except ImportError: if os.path.isdir("/proc/%i/fd" % os.getpid()): def get_open_fds(): - return [int(fd) for fd in os.listdir("/proc/%i/fd" % os.getpid()) \ - if fd.isdigit()] + return (int(fd) for fd in os.listdir("/proc/%i/fd" % os.getpid()) \ + if fd.isdigit()) else: def get_open_fds(): return xrange(max_fd_limit) |