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.

Author mark
Recipients mark
Date 2008-05-12.09:39:20
SpamBayes Score 0.005727881
Marked as misclassified No
Message-id <1210585171.47.0.115273460477.issue2835@psf.upfronthosting.co.za>
In-reply-to
Content
There appears to be an infinite recursion in Py30a5 (doing the same
thing in Py2.5.1 works fine):

Python 3.0a5 (r30a5:62856, May  9 2008, 11:23:06) 
[GCC 4.1.2 20070925 (Red Hat 4.1.2-33)] on linux2
Type "copyright", "credits" or "license()" for more information.
IDLE 3.0a5
>>> import webbrowser
>>> url = "http://www.python.org"
>>> webbrowser.open(url)
Traceback (most recent call last):
  File "<pyshell#9>", line 1, in <module>
    webbrowser.open(url)
  File "/home/mark/opt/python30a5/lib/python3.0/webbrowser.py", line 61,
in open
    if browser.open(url, new, autoraise):
  File "/home/mark/opt/python30a5/lib/python3.0/webbrowser.py", line
350, in open
    devnull = open(os.devnull, "r+")
  File "/home/mark/opt/python30a5/lib/python3.0/webbrowser.py", line 61,
in open
    if browser.open(url, new, autoraise):
  File "/home/mark/opt/python30a5/lib/python3.0/webbrowser.py", line
350, in open
...
    devnull = open(os.devnull, "r+")
  File "/home/mark/opt/python30a5/lib/python3.0/webbrowser.py", line 61,
in open
    if browser.open(url, new, autoraise):
History
Date User Action Args
2008-05-12 09:39:32marksetspambayes_score: 0.00572788 -> 0.005727881
recipients: + mark
2008-05-12 09:39:31marksetspambayes_score: 0.00572788 -> 0.00572788
messageid: <1210585171.47.0.115273460477.issue2835@psf.upfronthosting.co.za>
2008-05-12 09:39:29marklinkissue2835 messages
2008-05-12 09:39:28markcreate