[issue1652] subprocess should have an option to restore SIGPIPE to default action

2019-09-09 Thread Gregory P. Smith
Change by Gregory P. Smith : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2014-01-14 Thread Jakub Wilk
Changes by Jakub Wilk jw...@jwilk.net: -- nosy: +jwilk ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1652 ___ ___ Python-bugs-list mailing list

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2012-05-30 Thread Matt Joiner
Changes by Matt Joiner anacro...@gmail.com: -- nosy: +anacrolix ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1652 ___ ___ Python-bugs-list

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2010-09-27 Thread Barry A. Warsaw
Changes by Barry A. Warsaw ba...@python.org: -- nosy: +barry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1652 ___ ___ Python-bugs-list mailing

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2010-09-02 Thread Mitar
Mitar mmi...@gmail.com added the comment: GHC Haskell compiler is currently opting for a different solution: installing an default empty handler which is cleared by exec automatically and signal handler is restored back to SIG_DFL: http://hackage.haskell.org/trac/ghc/ticket/4274 --

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2010-09-02 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: closing because it is too late to backport this to 2.7. It is available as a backport in http://code.google.com/p/python-subprocess32/. As for the idea of not using SIG_IGN and installing a default no-op handler, that is another approach.

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2010-07-22 Thread Robert Cronk
Changes by Robert Cronk cron...@gmail.com: -- nosy: +rcronk ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1652 ___ ___ Python-bugs-list mailing

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2010-03-14 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed an oversight on the switch None == -1 which prevents compilation on some buildbot. See r78961. -- nosy: +flox ___ Python tracker rep...@bugs.python.org

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2010-03-13 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: A restore_signals parameter was added in py3k r78946. I'm leaving this issue open as it needs backporting to 2.7. -- versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2010-02-15 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I think restore_sigpipe=True would be a reasonable default. As RDM says, adding an unit test would be better, but it may be difficult to do so (we probably can't spawn Python itself since it will change the default SIGPIPE handler at startup).

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2009-07-02 Thread Colin Watson
Colin Watson cjwat...@users.sourceforge.net added the comment: Is there anything more I can do to move this along? Thanks. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1652 ___

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2009-07-02 Thread Andreas Kloeckner
Changes by Andreas Kloeckner inf...@tiker.net: -- nosy: +inducer ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1652 ___ ___ Python-bugs-list

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2009-07-02 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Hmm. Looks like the patch is missing a unit test for the new feature. -- stage: patch review - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1652

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2008-04-29 Thread Colin Watson
Colin Watson [EMAIL PROTECTED] added the comment: 2.6 is fine if that's what the release process dictates; I don't want it to be lost, that's all. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1652 __

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2008-04-29 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Martin, what do you think? -- assignee: - loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1652 __ ___

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2008-02-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: The patch as it stands (subprocess-sigpipe.patch) definitely can't go into 2.5.x: it introduces a new feature. It's not clear to me whether Colin intended to target it for 2.5.x, as it is against the trunk. For the trunk, the patch is fine. Regargeting for

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2008-02-01 Thread Georg Brandl
Georg Brandl added the comment: Martin, what do you think? -- assignee: - loewis nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1652 __ ___

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2008-02-01 Thread Colin Watson
Colin Watson added the comment: To be quite honest I can't think of any incompatibilities that wouldn't have the basic result of improving matters. I put the migration stuff in my bug report in case somebody else could, because I don't want the bug fix to stall on that. My preference would be

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Raising priority. What incompatibilities could occur if SIGPIPE is restored by default? -- nosy: +georg.brandl priority: - high severity: normal - major type: - behavior __ Tracker [EMAIL PROTECTED]

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2007-12-18 Thread Colin Watson
New submission from Colin Watson: On Unix, Python sets SIGPIPE to SIG_IGN on startup, because it prefers to check every write and raise an IOError exception rather than taking SIGPIPE. This is all well and good for Python itself. However, non-Python Unix subprocesses generally expect to have