Re: Wanted: Email Client with GUI

2007-04-18 Thread Franz Steinhaeusler
On 18 Apr 2007 07:09:29 -0700, [EMAIL PROTECTED] wrote: >On Apr 18, 8:07 am, Franz Steinhaeusler <[EMAIL PROTECTED]> >wrote: >> Hi, although I have googled, I didn't find a Python >> email client program fitting to my needs. >> >> What I want is a progra

Ubunu - Linux - Unicode - encoding

2007-02-01 Thread Franz Steinhaeusler
Hello NG, a little longer question, I'm working on our project DrPython and try fix bugs in Linux, (on windows, it works very good now with latin-1 encoding). On Windows, it works good now, using setappdefaultencoding and the right encoding for open with styled text control with the right encodin

Python compiled on Windows

2007-02-04 Thread Franz Steinhaeusler
Hello, I'm only curious. Why is Python and most extension (also wxPython) not built using an open source compiler like gcc or g++ on Windows? I'm always wondering, why Microsoft is still supported in that way, using VC++ 7.1, if I'm not wrong. Ok, maybe the compiled assembler code could be bett

Re: Python compiled on Windows

2007-02-06 Thread Franz Steinhaeusler
On Mon, 05 Feb 2007 12:17:48 +0100, hg <[EMAIL PROTECTED]> wrote: >Duncan Booth wrote: > >> Franz Steinhaeusler <[EMAIL PROTECTED]> wrote: >> >>> Hello, I'm only curious. >>> >>> Why is Python and most extension (also wxPython)

Re: Python compiled on Windows

2007-02-06 Thread Franz Steinhaeusler
On 6 Feb 2007 08:35:08 GMT, Duncan Booth <[EMAIL PROTECTED]> wrote: >Franz Steinhaeusler <[EMAIL PROTECTED]> wrote: > >> @Duncan: Yes, you are not wrong! :) >> But this is not really open source in my opinion. >> Ok there is the VC++ toolkit for download. >

Re: Python compiled on Windows

2007-02-07 Thread Franz Steinhaeusler
On 7 Feb 2007 09:44:32 GMT, Duncan Booth <[EMAIL PROTECTED]> wrote: >Franz Steinhaeusler <[EMAIL PROTECTED]> wrote: > >>>Yes, people have compiled Python with gcc on windows. I believe it is >>>slightly slower than the standard release, but I would guess that

Re: wxPython - 2 x foldpanelbar with tree...

2007-02-26 Thread Franz Steinhaeusler
On 26 Feb 2007 06:50:11 -0800, "w.p." <[EMAIL PROTECTED]> wrote: >Hello! >I have some trouble with my GUI. I have left panel with foldpanelbar, >but i need one item but not collapsed - simple button. I split my left >panel into two foldpanelbars with one button between. >But a have trouble... >Sor

Python Source Code Beautifier

2007-02-27 Thread Franz Steinhaeusler
Hello, I did not find any reasonable pyhton source code beautifier program (preferable gui). Some would ask why? Program it immediatly good. (BTW: Would be a nice project, if I would have more spare time). Ich have some foreign source, which are programed in a way I don't like, so I would like t

Re: Python Source Code Beautifier

2007-02-28 Thread Franz Steinhaeusler
Hello, thanks. pythontidy (with maybe some patches could be useful) not directly related but: pyflakes looks quite interesting too. and I try out (again) pylint and pychecker or a combination of these could bring good results, I assume. ;) -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython GenericDirCtrl events

2006-03-08 Thread Franz Steinhaeusler
On 8 Mar 2006 04:25:38 -0800, "Iain King" <[EMAIL PROTECTED]> wrote: > >at the end TestPanel.__init__ I added: > >self.Bind(wx.EVT_TREE_SEL_CHANGED, self.test, dir1) >{...] Try this instead: t = dir1.GetTreeCtrl() t.Bind(wx.EVT_TREE_SEL_CHANGED, self.test) -

Re: wxStyledTextCtrl - Dead?

2006-04-11 Thread Franz Steinhaeusler
On Tue, 11 Apr 2006 06:58:28 -0400, Peter Hansen <[EMAIL PROTECTED]> wrote: >David Rasmussen wrote: >> I am trying to make a programmer's editor (and later a full IDE), and I >> want things like syntax highlighting etc. I could of course roll my own >> fancy editing control, but if STC could sol

<    1   2