Re: [PyQt] ANN: PyQt v4.9.2 and SIP v4.13.3 Released

2012-06-24 Thread Kovid Goyal
On Sun, Jun 24, 2012 at 12:29:06PM +0100, Phil Thompson wrote: > As it's a regression I'll do a brown paper bag release of 4.9.3. Thanks, appreciate it. Kovid. -- _ Dr. Kovid Goyal http://www.kovidgoyal.net http://calibre-ebook.com _

Re: [PyQt] ANN: PyQt v4.9.2 and SIP v4.13.3 Released

2012-06-24 Thread Phil Thompson
On Sun, 24 Jun 2012 08:32:43 +0530, Kovid Goyal wrote: > Just for completeness, here is the simplest possible test case: > > python -c "from PyQt4.Qt import QByteArray; bytearray(QByteArray(b''))" > > This causes a hang with PyQt 4.8.2 but not with PyQt 4.8.1 (sip 4.13.3) It seems I managed to

Re: [PyQt] ANN: PyQt v4.9.2 and SIP v4.13.3 Released

2012-06-23 Thread Kovid Goyal
Just for completeness, here is the simplest possible test case: python -c "from PyQt4.Qt import QByteArray; bytearray(QByteArray(b''))" This causes a hang with PyQt 4.8.2 but not with PyQt 4.8.1 (sip 4.13.3) Kovid. On Sat, Jun 23, 2012 at 10:26:08PM +0100, Phil Thompson wrote: > On Sat, 23 Jun

Re: [PyQt] ANN: PyQt v4.9.2 and SIP v4.13.3 Released

2012-06-23 Thread Kovid Goyal
On Sat, Jun 23, 2012 at 10:26:08PM +0100, Phil Thompson wrote: > On Sat, 23 Jun 2012 21:53:48 +0530, Kovid Goyal > wrote: > > On Sat, Jun 23, 2012 at 01:36:42PM +0100, Phil Thompson wrote: > >> Hmm, hardly anything has changed in PyQt4. Can you try using the... > >> > >> qpy/QtCore/qpycore_pyqtpr

Re: [PyQt] ANN: PyQt v4.9.2 and SIP v4.13.3 Released

2012-06-23 Thread Phil Thompson
On Sat, 23 Jun 2012 12:02:36 +0530, Kovid Goyal wrote: > I find that with PyQt 4.9.2 and SIP 4.13.2 or 4.13.3 calls to > QMainWindow::saveState freeze in *some* circumstances. Reverting to PyQt > 4.9.1 fixes the issue. The freezes are happening in a closeEvent > handler (linux 64bit, Qt 4.8.2, com

Re: [PyQt] ANN: PyQt v4.9.2 and SIP v4.13.3 Released

2012-06-22 Thread Kovid Goyal
I find that with PyQt 4.9.2 and SIP 4.13.2 or 4.13.3 calls to QMainWindow::saveState freeze in *some* circumstances. Reverting to PyQt 4.9.1 fixes the issue. The freezes are happening in a closeEvent handler (linux 64bit, Qt 4.8.2, compiled from source packages). I haven't been able to figure out

[PyQt] ANN: PyQt v4.9.2 and SIP v4.13.3 Released

2012-06-21 Thread Phil Thompson
PyQt v4.9.2 and SIP v4.13.3 have been released. From the PyQt NEWS file... - Added support for Qt v4.8.2. - Added support for Qt v5-alpha (QtCore and QtGui only). - Added support for Python v3.3. - bool(QPyNullVariant(...)) now returns False rather than True to mimic the behaviour of None. - Exp