pyqt4 eric4 generated gui custom dialog open

2009-12-15 Thread rewonka
d something to connect, but i didn't found how (exactly source code). On the dialog i have two button (OK,Cancel). As i saw the generated code for pyqt has line like this: QtCore.QMetaObject.connectSlotsByName(MainWindow) I think that's mean i don't need to connect, if i have the fu

Re: split problem if the delimiter is inside the text limiter

2009-03-18 Thread rewonka
On márc. 18, 14:10, Peter Otten <__pete...@web.de> wrote: > rewonka wrote: > > I had a problem, i would like to process a file into a PSQL, but in > > the file the delimiter char is ':' > > and i have the same charater inside the text field also. > > some

split problem if the delimiter is inside the text limiter

2009-03-18 Thread rewonka
Hi, I had a problem, i would like to process a file into a PSQL, but in the file the delimiter char is ':' and i have the same charater inside the text field also. something like this: text = 1:23:34:"sample: text":" something" if I use text.split(':') it will be ['1', '23', '34', '"sample', 'text