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 jbmilam
Recipients Arfrever, PedanticHacker, devplayer, eryksun, jbmilam, joncwchao, python-dev, r.david.murray, steve.dower
Date 2015-09-07.16:57:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441645060.41.0.172075335805.issue8232@psf.upfronthosting.co.za>
In-reply-to
Content
Ok I've been able to test the new patch now and I'm not sure that os.startfile is going to work. I've been able to get os.startfile() to open a specified browser (>>> os.startfile("chrome.exe", "open")), however, the function does not allow additional arguments(>>> os.startfile("chrome.exe", "open", "www.yahoo.com")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: startfile() takes at most 2 arguments (3 given))) so not even a url will be allowed to be specified as the code is written in the patch let alone specifying new window or new tab. Is this an error on os.startfile's part? The documentation for it seems to indicate that it should take multiple inputs. I don't have much experience with C to be able to find out figure out what the rest of your patch accomplished.
History
Date User Action Args
2015-09-07 16:57:40jbmilamsetrecipients: + jbmilam, Arfrever, r.david.murray, joncwchao, devplayer, python-dev, eryksun, steve.dower, PedanticHacker
2015-09-07 16:57:40jbmilamsetmessageid: <1441645060.41.0.172075335805.issue8232@psf.upfronthosting.co.za>
2015-09-07 16:57:40jbmilamlinkissue8232 messages
2015-09-07 16:57:40jbmilamcreate