diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2004-12-01 15:04:05 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2004-12-01 15:04:05 +0000 |
commit | cbee63519e5bfa9431cedefac9d47c9bca12db45 (patch) | |
tree | 1dc8467b10d712e142255d9e46f003ec59a7b07e /lang/python/files/patch-Lib::distutils::spawn.py | |
parent | - Update to 4.6.24 (diff) |
- Update lang/python to 2.4 final release.
- Finish repocopy lang/python -> lang/python23 for Python 2.3.4
Diffstat (limited to 'lang/python/files/patch-Lib::distutils::spawn.py')
-rw-r--r-- | lang/python/files/patch-Lib::distutils::spawn.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lang/python/files/patch-Lib::distutils::spawn.py b/lang/python/files/patch-Lib::distutils::spawn.py deleted file mode 100644 index 208b10fc1083..000000000000 --- a/lang/python/files/patch-Lib::distutils::spawn.py +++ /dev/null @@ -1,17 +0,0 @@ ---- Lib/distutils/spawn.py.orig Tue Feb 24 16:55:44 2004 -+++ Lib/distutils/spawn.py Tue Feb 24 16:56:01 2004 -@@ -144,7 +144,13 @@ - # Loop until the child either exits or is terminated by a signal - # (ie. keep waiting if it's merely stopped) - while 1: -- (pid, status) = os.waitpid(pid, 0) -+ try: -+ (pid, status) = os.waitpid(pid, 0) -+ except OSError, exc: -+ import errno -+ if exc.errno == errno.EINTR: -+ continue -+ raise exc - if os.WIFSIGNALED(status): - raise DistutilsExecError, \ - "command '%s' terminated by signal %d" % \ |