Re: Python horks on WinXP path names

2011-12-08 Thread Eric
On Dec 8, 2:43 pm, Ian Kelly wrote: > On Thu, Dec 8, 2011 at 1:16 PM, Eric wrote: > > I'm running Python 2.7 on WinXP (ActiveState community version) and > > when I try to do this: > > > if __name__ == '__main__': > >    root = Tkinter.Tk() > >    root.withdraw() > >    fileNames = tkFileDialog.a

Re: Python horks on WinXP path names

2011-12-08 Thread Jerry Hill
On Thu, Dec 8, 2011 at 3:16 PM, Eric wrote: > I'm running Python 2.7 on WinXP (ActiveState community version) and > when I try to do this: > > if __name__ == '__main__': >root = Tkinter.Tk() >root.withdraw() >fileNames = tkFileDialog.askopenfilenames() >root.destroy() >print f

Re: Python horks on WinXP path names

2011-12-08 Thread Ian Kelly
On Thu, Dec 8, 2011 at 1:16 PM, Eric wrote: > I'm running Python 2.7 on WinXP (ActiveState community version) and > when I try to do this: > > if __name__ == '__main__': >    root = Tkinter.Tk() >    root.withdraw() >    fileNames = tkFileDialog.askopenfilenames() >    root.destroy() >    print fi

Python horks on WinXP path names

2011-12-08 Thread Eric
I'm running Python 2.7 on WinXP (ActiveState community version) and when I try to do this: if __name__ == '__main__': root = Tkinter.Tk() root.withdraw() fileNames = tkFileDialog.askopenfilenames() root.destroy() print fileNames # windows filename gets for fileName in fileNames