Re: [Tutor] Python and Tkinter Programming by Grayson--New Version?

2010-11-25 Thread Yves Dextraze
Sent from my iPod ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] tempfile and webbrowser

2006-09-10 Thread yves
file descriptors: http://en.wikipedia.org/wiki/File_descriptor Thank you. -- Yves Egrix ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] tempfile and webbrowser

2006-09-07 Thread yves
.3 (#51, Dec 18 2003, 20:22:39) [MSC v.1200 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> ## working on region in file c:/DOCUME~1/Yves/LOCALS~1/Temp/python-1408y8u... c:\docume~1\yves\locals~1\tem

Re: [Tutor] tempfile and webbrowser

2006-09-03 Thread yves
) which lets you close the file and > delete it when you are done with it. Thank you, this works: import tempfile import webbrowser a = tempfile.mkstemp('.html') f= open(a[1],'w') f.write("Test") f.close() web

[Tutor] tempfile and webbrowser

2006-09-03 Thread yves
I am using Python2.3.3 on Windows XP, and Firefox. Have you got some suggestions to tackle this problem? -- Yves Egrix ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor