From: Peter Astrand Date: Thu, 22 Jun 2006 20:21:26 +0000 (+0000) Subject: Applied patch #1506758: Prevent MemoryErrors with large MAXFD. X-Git-Tag: v2.5b2~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff355f1adaa423c143c169221bd4a80775adf8bb;p=python Applied patch #1506758: Prevent MemoryErrors with large MAXFD. --- diff --git a/Lib/popen2.py b/Lib/popen2.py index b966d4c80e..6f56a926e9 100644 --- a/Lib/popen2.py +++ b/Lib/popen2.py @@ -79,7 +79,7 @@ class Popen3: def _run_child(self, cmd): if isinstance(cmd, basestring): cmd = ['/bin/sh', '-c', cmd] - for i in range(3, MAXFD): + for i in xrange(3, MAXFD): try: os.close(i) except OSError: diff --git a/Lib/subprocess.py b/Lib/subprocess.py index a281cd8f22..9c9cd69df2 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -941,7 +941,7 @@ class Popen(object): def _close_fds(self, but): - for i in range(3, MAXFD): + for i in xrange(3, MAXFD): if i == but: continue try: