Re: wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-12 Thread Gilles Ganault
On Tue, 11 Mar 2008 11:43:45 +0100, Stef Mientki <[EMAIL PROTECTED]> wrote: >Funny, compared to Delphi-7, >I found the grid in wxPython much richer ;-) You haven't tried the better alternatives I had in mind: http://www.x-files.pl http://www.bergsoft.net http://www.tmssoftware.com http://www.scal

Re: wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-11 Thread Stef Mientki
Gilles Ganault wrote: > On Mon, 10 Mar 2008 11:27:06 -0400, "Malcolm Greene" > <[EMAIL PROTECTED]> wrote: >> Any suggestions on an alternative Python client-side GUI library (pyQT >> ?) or tips on where I can find out more about wxPython/wxWidget >> problems? > > One thing that bothers me is that

Re: wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-11 Thread Gilles Ganault
On Mon, 10 Mar 2008 22:17:16 -0700 (PDT), Frank Millman <[EMAIL PROTECTED]> wrote: >I do not know if this helps, but here is an extract from a recent post >to the wxPython mailing list from Robin Dunn, the main developer of >wxPython - I'll take a look. Thanks for the info. -- http://mail.python.

Re: wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-11 Thread NoelByron
Hi Malcom On Mar 10, 4:27 pm, "Malcolm Greene" <[EMAIL PROTECTED]> wrote: > I'm new to Python and getting ready to build a small client based > application intended to run on Windows and Linux. I was planning on > using wxPython until I saw your comment above. We use wxPython and Python internall

Re: wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-10 Thread Frank Millman
Gilles Ganault wrote: > On Mon, 10 Mar 2008 11:27:06 -0400, "Malcolm Greene" > <[EMAIL PROTECTED]> wrote: > >Any suggestions on an alternative Python client-side GUI library (pyQT > >?) or tips on where I can find out more about wxPython/wxWidget > >problems? > > One thing that bothers me is that

Re: wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-10 Thread Gilles Ganault
On Mon, 10 Mar 2008 11:27:06 -0400, "Malcolm Greene" <[EMAIL PROTECTED]> wrote: >Any suggestions on an alternative Python client-side GUI library (pyQT >?) or tips on where I can find out more about wxPython/wxWidget >problems? One thing that bothers me is that it seems like there's no ecosystem a

Re: Quality assurance in Python projects containing C modules

2008-03-10 Thread Stefan Behnel
Duncan Booth wrote: > Stefan Behnel <[EMAIL PROTECTED]> wrote: >> Duncan Booth wrote: >>> I would start by ensuring that any DLLs you write are written using >>> Pyrex or Cython: almost always problems with C libraries called from >>> Python are due to faulty reference counting but if you keep all

Re: Quality assurance in Python projects containing C modules

2008-03-10 Thread Duncan Booth
Stefan Behnel <[EMAIL PROTECTED]> wrote: > Duncan Booth wrote: >> I would start by ensuring that any DLLs you write are written using >> Pyrex or Cython: almost always problems with C libraries called from >> Python are due to faulty reference counting but if you keep all of >> your Python related

Re: wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-10 Thread Mike Driscoll
On Mar 10, 10:27 am, "Malcolm Greene" <[EMAIL PROTECTED]> wrote: > Stefan, > > > My personal experience with wxPython has its ups and downs. Specifically > > when it comes to crashes, I wouldn't bet my life on it. (but then, the OP > > I'm new to Python and getting ready to build a small client ba

wxPython/wxWidgets ok for production use ? (was Re: Quality assurance in Python projects containing C modules)

2008-03-10 Thread Malcolm Greene
Stefan, > My personal experience with wxPython has its ups and downs. Specifically when > it comes to crashes, I wouldn't bet my life on it. (but then, the OP I'm new to Python and getting ready to build a small client based application intended to run on Windows and Linux. I was planning on usi

Re: Quality assurance in Python projects containing C modules

2008-03-10 Thread Stefan Behnel
Duncan Booth wrote: > [EMAIL PROTECTED] wrote: >> We are thinking about writing a project for several customers in >> Python. This project would include (among others) wxPython, a C/C++ >> module. But what happens if this application generates a segmentation >> fault on a customers PC. What changes

Re: Quality assurance in Python projects containing C modules

2008-03-10 Thread Duncan Booth
[EMAIL PROTECTED] wrote: > Hello! > > We are thinking about writing a project for several customers in > Python. This project would include (among others) wxPython, a C/C++ > module. But what happens if this application generates a segmentation > fault on a customers PC. What changes do we have t

Quality assurance in Python projects containing C modules

2008-03-10 Thread NoelByron
Hello! We are thinking about writing a project for several customers in Python. This project would include (among others) wxPython, a C/C++ module. But what happens if this application generates a segmentation fault on a customers PC. What changes do we have to trace back the source of the error?