On 05/12/06, Kent Johnson <[EMAIL PROTECTED]> wrote:
> The docs for os.startfile() say it is available on Windows only.

Hmm, well you could do a basic Mac version of startfile like this:

def startfile(fn):
    os.system('open %s' % fn)

-- 
John.
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to