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 luckycusp
Recipients daku9999, dhalbert, ggenellina, gpolo, luckycusp, nosklo
Date 2010-06-16.16:46:33
SpamBayes Score 3.9507024e-05
Marked as misclassified No
Message-id <1276706794.86.0.5647842789.issue5712@psf.upfronthosting.co.za>
In-reply-to
Content
Update!! I found a very good workaround for this and it works very nicely, with both 2.5 and 2.6 versions. 

Below is the segment from my code:-

from Tkinter import *
import tkFileDialog

master = Tk()
master.withdraw() #hiding tkinter window

Inputfiles = tkFileDialog.askopenfilenames(title="Select the source input file(s)", filetypes=[("mpf file",".mpf"),("All files",".*")])

#Heres the TRICK!
InputfilesList =  master.tk.splitlist(Inputfiles)
History
Date User Action Args
2010-06-16 16:46:34luckycuspsetrecipients: + luckycusp, ggenellina, gpolo, nosklo, daku9999, dhalbert
2010-06-16 16:46:34luckycuspsetmessageid: <1276706794.86.0.5647842789.issue5712@psf.upfronthosting.co.za>
2010-06-16 16:46:33luckycusplinkissue5712 messages
2010-06-16 16:46:33luckycuspcreate