Re: [Tutor] More than one thing at a time?

2005-10-02 Thread Michael Sparks
[ cc'ing the Kamaelia list in case it makes sense to move this conversation  there. ] On Sunday 02 October 2005 15:20, Joseph Quigley wrote: > Hi Michael, > You're explanation helped a lot, however, I'm really not good at gui > programming and the irc client was supposed to be a console application

Re: [Tutor] pywin32 under Win64

2005-10-02 Thread Bernard Lebel
Still, anyone has tried Python on Win64? Thanks Berrnard On 10/2/05, Bernard Lebel <[EMAIL PROTECTED]> wrote: > Oh, thanks Danny! > > Bernard > > > On 10/2/05, Danny Yoo <[EMAIL PROTECTED]> wrote: > > > > > > On Sun, 2 Oct 2005, Bernard Lebel wrote: > > > > > I'm considering switching to Wind

Re: [Tutor] pywin32 under Win64

2005-10-02 Thread Bernard Lebel
Oh, thanks Danny! Bernard On 10/2/05, Danny Yoo <[EMAIL PROTECTED]> wrote: > > > On Sun, 2 Oct 2005, Bernard Lebel wrote: > > > I'm considering switching to Windows 64bit. However I was wondering if > > anyone on this list have been using the pywin32 extension (or any > > win32com-related packag

Re: [Tutor] pywin32 under Win64

2005-10-02 Thread Danny Yoo
On Sun, 2 Oct 2005, Bernard Lebel wrote: > I'm considering switching to Windows 64bit. However I was wondering if > anyone on this list have been using the pywin32 extension (or any > win32com-related package/distribution for that matter) on Win64. > Possibly the pywin*32* thing is making me cau

[Tutor] pywin32 under Win64

2005-10-02 Thread Bernard Lebel
Hello, I'm considering switching to Windows 64bit. However I was wondering if anyone on this list have been using the pywin32 extension (or any win32com-related package/distribution for that matter) on Win64. Possibly the pywin*32* thing is making me cautious, but that not be nice if I find out I

Re: [Tutor] More than one thing at a time?

2005-10-02 Thread Joseph Quigley
Hi Michael, You're explanation helped a lot, however, I'm really not good at gui programming and the irc client was supposed to be a console application, but: Would it be hard to just have a send texbox and receive read-only text box? I'll try this, but I think I should mention that I'm using p

Re: [Tutor] Struct and UTF-16

2005-10-02 Thread Kent Johnson
Liam Clarke wrote: > What's the difference between > > x = "Hi" > y = x.encode("UTF-16") > > and > > y = unicode(x, "UTF-16") They are more-or-less opposite. encode() converts away from unicode. (Think of unicode as the 'normal' format, anything else in 'encoded'.) Normally it is used on a un

Re: [Tutor] installing pydev

2005-10-02 Thread Pujo Aji
I think you should use simple project, and then add a file with extention py   Cheers, pujo  On 10/2/05, Mohammad Moghimi <[EMAIL PROTECTED]> wrote: HiI have download pydev(org.python.pydev.feature-0_9_8_2.zip) from sourceforge.  Then I extract it to my eclipse directory. But When I try to create a

[Tutor] installing pydev

2005-10-02 Thread Mohammad Moghimi
Hi I have download pydev(org.python.pydev.feature-0_9_8_2.zip) from sourceforge.  Then I extract it to my eclipse directory. But When I try to create a new project, there isn't any python related project to select. I have installed python interpreter before. What is my problem and how can I fix it?

[Tutor] Struct and UTF-16

2005-10-02 Thread Liam Clarke
Hi all, Just got a bit of confusion with trying to use struct with unicode. What's the difference between x = "Hi" y = x.encode("UTF-16") and y = unicode(x, "UTF-16") Regards, Liam Clarke ___ Tutor maillist - Tutor@python.org http://mail.python.o