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 Elizacat
Recipients Elizacat
Date 2015-11-24.23:46:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448408764.04.0.983609943062.issue25727@psf.upfronthosting.co.za>
In-reply-to
Content
os.startfile can be implemented on other OS'es besides Windows relatively easily (although the operation parameter should probably be limited to Windows; it can be implemented elsewhere, but is probably not worth the trouble).

On Unix-like operating systems besides OS X, an attempt to use xdg-open can be used and will attempt to open the file in a chosen program; this is the freedesktop.org standard open utility. See also http://linux.die.net/man/1/xdg-open and https://wiki.archlinux.org/index.php/Xdg-open (not specific to ArchLinux).

On OS X, open can be used, with similar results to xdg-open (in fact, xdg-open seems inspired by it). See also https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/open.1.html.
History
Date User Action Args
2015-11-24 23:46:04Elizacatsetrecipients: + Elizacat
2015-11-24 23:46:04Elizacatsetmessageid: <1448408764.04.0.983609943062.issue25727@psf.upfronthosting.co.za>
2015-11-24 23:46:03Elizacatlinkissue25727 messages
2015-11-24 23:46:03Elizacatcreate