[issue11432] webbrowser.open on unix fails.

2011-03-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: With fix, test, and news in 3.2 and 3.3, is anything left to do? -- nosy: +terry.reedy ___ Python tracker ___ _

[issue11432] webbrowser.open on unix fails.

2011-03-15 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> fixed status: open -> closed versions: -Python 2.7, Python 3.1 ___ Python tracker ___ __

[issue11432] webbrowser.open on unix fails.

2011-03-15 Thread Roundup Robot
Roundup Robot 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 http://hg.python.org/cpython

[issue11432] webbrowser.open on unix fails.

2011-03-15 Thread Roundup Robot
Roundup Robot 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 the stdin pipe is

[issue11432] webbrowser.open on unix fails.

2011-03-11 Thread Gregory P. Smith
Gregory P. Smith 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-11 Thread Éric Araujo
Éric Araujo 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 tracker

[issue11432] webbrowser.open on unix fails.

2011-03-08 Thread Antoine Pitrou
Antoine Pitrou 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 details. ---

[issue11432] webbrowser.open on unix fails.

2011-03-08 Thread Charles-Francois Natali
Charles-Francois Natali 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 Charles-Francois Natali
Charles-Francois Natali 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 (errwrite != c2pwrite &

[issue11432] webbrowser.open on unix fails.

2011-03-07 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue11432] webbrowser.open on unix fails.

2011-03-07 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Library (Lib) -Extension Modules nosy: +ezio.melotti, georg.brandl type: -> behavior ___ Python tracker ___ ___

[issue11432] webbrowser.open on unix fails.

2011-03-07 Thread Campbell Barton
New submission from Campbell Barton : 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 "", line 1, in File "/usr/lib/python3.2/webbrowser.py",