This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Simple webbrowser fix for netscape -remote
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, jlcherry, phd, rodsenra
Priority: normal Keywords: patch

Created on 2004-12-02 22:41 by jlcherry, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
netscape-remote-patch.diff jlcherry, 2004-12-02 22:41 patch
Messages (4)
msg47358 - (view) Author: Josh Cherry (jlcherry) Date: 2004-12-02 22:41
This patch simply removes a space in a netscape -remote
command that is executed by webbrowser.  This space
caused problems with certain urls, at least with
netscape 7.2.  For example,

webbrowser.open_new('http://www.python.org')

would file, though

webbrowser.open_new('http://www.python.org/')

would work.
msg47359 - (view) Author: Oleg Broytman (phd) * Date: 2004-12-07 11:26
Logged In: YES 
user_id=4799

Yes, I can confirm the problem with Mozilla. I updated my
big patch for webbrowser.py at http://python.org/sf/754022.
msg47360 - (view) Author: Rodrigo Dias Arruda Senra (rodsenra) Date: 2005-03-20 01:21
Logged In: YES 
user_id=9057

1144816 and 1077979 are the the same patch, as documented
  in a comment for 1144816  by Oleg Broytmann.

 The wrong behaviour was reported to Mozilla (unspecified
version),
 Netscape 7.2 and Mozilla-firefox (unspecified version).

 I could not reproduce the problem  neither with Mozilla
1.7.2 nor
 with Firefox 1.0.1. Nevertheless, applying the patch does
not break 
 current functionality and might fix bugs in older browsers. 

 I recommend applying 1077979, and closing 1144816.
msg47361 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-09-15 07:54
Logged In: YES 
user_id=1188172

Fixed in webbrowser.py r1.37.4.1. Included in big webbrowser
patch for 2.5.
History
Date User Action Args
2022-04-11 14:56:08adminsetgithub: 41277
2004-12-02 22:41:33jlcherrycreate