From: Zac Medico Date: Fri, 15 Aug 2008 18:45:07 +0000 (-0000) Subject: For consistency, make get_open_fds() return a plain iterator in any case, X-Git-Tag: v2.2_rc9~83 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=46da22f6de519fb48177b6194536b0704977bf5d;p=portage.git 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 --- 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)