Re: Get filename using filefialog.askfilename

2013-08-10 Thread Joshua Landau
On 10 August 2013 11:37, wrote: > Sarcastic what the kcuf ¿?¿?¿? > > My english is SO bad? > > Do you know me? > > I can not understand this paranoia i only was giving thanks. Sarcasm and a lack thereof is very hard to see over the Internet. It's probably just a misunderstanding :).

Re: Get filename using filefialog.askfilename

2013-08-10 Thread cheirasacan
Sarcastic what the kcuf ¿?¿?¿? My english is SO bad? Do you know me? I can not understand this paranoia i only was giving thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: Get filename using filefialog.askfilename

2013-05-08 Thread Dave Angel
On 05/08/2013 04:14 PM, cheirasa...@gmail.com wrote: El martes, 7 de mayo de 2013 23:53:32 UTC+2, Terry Jan Reedy escribió: On 5/7/2013 4:27 PM, cheirasa...@gmail.com wrote: Yeah. This is an answer. A lot of thanks. For a moment there, I thought you were being sarcastic, and ungra

Re: Get filename using filefialog.askfilename

2013-05-08 Thread cheirasacan
El martes, 7 de mayo de 2013 23:53:32 UTC+2, Terry Jan Reedy escribió: > On 5/7/2013 4:27 PM, cheirasa...@gmail.com wrote: > > > > > file = filedialog.askopenfile ( mode... ) > > > > askopenfile is a convenience function that creates an Open dialog > > object, shows it, gets the name r

Re: Get filename using filefialog.askfilename

2013-05-07 Thread Terry Jan Reedy
On 5/7/2013 4:27 PM, cheirasa...@gmail.com wrote: file = filedialog.askopenfile ( mode... ) askopenfile is a convenience function that creates an Open dialog object, shows it, gets the name returned by the dialog, opens the file with that name, and returns an appropriate normal file obje

Re: Get filename using filefialog.askfilename

2013-05-07 Thread John Gordon
In cheirasa...@gmail.com writes: > print(file) > the output is: <..name="file.doc"...mode=..encoding.. > > How can i get the second member of 'file'? If you're using the interpreter, you can type this command: >>> help(file) And it will display documentation for using o