diff --git a/Lib/popen2.py b/Lib/popen2.py index b966d4c80eb..6f56a926e99 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 a281cd8f222..9c9cd69df27 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: