From 46da22f6de519fb48177b6194536b0704977bf5d Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 15 Aug 2008 18:45:07 +0000 Subject: 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 --- pym/portage/process.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym/portage/process.py') 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) -- cgit v1.2.3-1-g7c22