[issue11432] webbrowser.open on unix fails.

2011-03-18 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: With fix, test, and news in 3.2 and 3.3, is anything left to do? -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11432

[issue11432] webbrowser.open on unix fails.

2011-03-15 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 08daf3ef6509 by Gregory P. Smith in branch 'default': Add unittests demonstrating issue #11432. http://hg.python.org/cpython/rev/08daf3ef6509 New changeset adcf03b074b7 by Gregory P. Smith in branch 'default': Fix issue #11432. if

[issue11432] webbrowser.open on unix fails.

2011-03-15 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 82e010943c68 by Gregory P. Smith in branch '3.2': issue 11432 news entry. http://hg.python.org/cpython/rev/82e010943c68 New changeset 8d3bcf57977b by Gregory P. Smith in branch 'default': Misc/NEWS entry for issue 11432

[issue11432] webbrowser.open on unix fails.

2011-03-15 Thread Gregory P. Smith
Changes by Gregory P. Smith g...@krypto.org: -- resolution: - fixed status: open - closed versions: -Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11432 ___

[issue11432] webbrowser.open on unix fails.

2011-03-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Is this a webbrowser or subprocess bug? Please add the corresponding expert from http://docs.python.org/devguide/experts to the nosy list. -- nosy: +eric.araujo versions: +Python 3.1 ___ Python

[issue11432] webbrowser.open on unix fails.

2011-03-11 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: subprocess in 3.2 bug from the looks of it. not sure if 2.7 or 3.1 are impacted at all, i'll remove them from the list after confirming. -- assignee: - gregory.p.smith ___ Python tracker

[issue11432] webbrowser.open on unix fails.

2011-03-08 Thread Charles-Francois Natali
Charles-Francois Natali neolo...@free.fr added the comment: The problem lies here: /* Close pipe fds. Make sure we don't close the same fd more than */ /* once, or standard fds. */ if (p2cread 2) { POSIX_CALL(close(p2cread)); } (c2pwrite 2) { POSIX_CALL(close(c2pwrite)); } if

[issue11432] webbrowser.open on unix fails.

2011-03-08 Thread Charles-Francois Natali
Charles-Francois Natali neolo...@free.fr added the comment: Attached is a patch checking that no FD is closed more once when closing pipe FDs, along with an update for test_subprocess. -- keywords: +patch Added file: http://bugs.python.org/file21053/subprocess_same_fd.diff

[issue11432] webbrowser.open on unix fails.

2011-03-08 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: That probably won't make a difference here, but be aware that we switched to Mercurial and the SVN repo won't get updates anymore. See http://docs.python.org/devguide/ and http://docs.python.org/devguide/setup.html#getting-the-source-code for

[issue11432] webbrowser.open on unix fails.

2011-03-07 Thread Campbell Barton
New submission from Campbell Barton ideasma...@gmail.com: On Linux - tested on: Arch linux @ Debian Squeeze, this fails python -c __import__('webbrowser').open('http://python.org') The exception thats raised is: Traceback (most recent call last): File string, line 1, in module File

[issue11432] webbrowser.open on unix fails.

2011-03-07 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- components: +Library (Lib) -Extension Modules nosy: +ezio.melotti, georg.brandl type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11432

[issue11432] webbrowser.open on unix fails.

2011-03-07 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +gregory.p.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11432 ___ ___ Python-bugs-list