Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-03 Thread Linos
Hello Phil, i have a problem with this version and a QFormLayout, this code in the .ui file: 80 0

Re: [PyQt] ipc/shared memory examples

2010-11-03 Thread Henning Schröder
On Wed, Nov 3, 2010 at 10:46 AM, Hans-Peter Jansen wrote: > Hi Phil et al., > > now, that sip.voidptr allows to access and modify shared memory > segments, here are Qt4's ipc examples converted to PyQt, tested with > Python 2.6. Testing with 2.7 and 3.x might be a good idea.. > > Note, that you ne

[PyQt] support for __slots__ / no-__dict__ instances in SIP/PyQt?

2010-11-03 Thread Hans Meine
Hi Phil, I have the personal habit of using __slots__ to explicitly list all "member variables", i.e. instance attributs my classes have. IIRC, the original intention behind this was to allow for efficient classes, i.e. ones that do not have one __dict__ per instance. But as a side effect, th

[PyQt] ipc/shared memory examples

2010-11-03 Thread Hans-Peter Jansen
Hi Phil et al., now, that sip.voidptr allows to access and modify shared memory segments, here are Qt4's ipc examples converted to PyQt, tested with Python 2.6. Testing with 2.7 and 3.x might be a good idea.. Note, that you need at least sip4 852:af2d7120dd7f for the sharedmemory example. Pet