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 daku9999
Recipients daku9999
Date 2009-04-06.17:45:10
SpamBayes Score 2.6803653e-07
Marked as misclassified No
Message-id <1239039911.64.0.172824576559.issue5712@psf.upfronthosting.co.za>
In-reply-to
Content
from tkFileDialog import askopenfilenames

a = askopenfilenames()
print a
print type(a)

'''
--output--
J:/PortablePython_1.1_py2.6.1/Aatest26/tk_new/rgb2hex.py
J:/PortablePython_1.1_py2.6.1/Aatest26/tk_new/bluebtn.jpg
J:/PortablePython_1.1_py2.6.1/Aatest26/tk_new/redbtn.jpg
<type 'unicode'>
'''

---- behaviour seen on windows xp 2.6.1 python release.  Linux
distributions seem fine.
---- parsing above string (as it's not a tuple anymore) is difficult as
it is a list of filenames separated by a space but spaces can be in the
middle of filenames.
History
Date User Action Args
2009-04-06 17:45:12daku9999setrecipients: + daku9999
2009-04-06 17:45:11daku9999setmessageid: <1239039911.64.0.172824576559.issue5712@psf.upfronthosting.co.za>
2009-04-06 17:45:10daku9999linkissue5712 messages
2009-04-06 17:45:10daku9999create