[PyKDE] Eric Configuration File

2006-01-30 Thread Alan Prescott
Where and how are the Preferences for Eric stored? I've found the ~/.eric3 directory but that only seems to have a lock file, the task list and template lists. I want to change some of the preferences and I'd like to back up the original settings in case I make too much of a mess. Alan

Re: [PyKDE] Auto-connecting Slots

2006-01-30 Thread Jesper Anderson
On Sat, Jan 28, 2006 at 08:18:25PM +0100, Gerard Vermeulen wrote: [ .. ] I mostly dislike the packing scheme of PyQt4, but I see where it's coming from, and as long as I'm allowed to use the from QtCore import * without polluting the global namespace, it's still good. Adding

Re: [PyKDE] Eric Configuration File

2006-01-30 Thread jul
Alan Prescott a écrit : Where and how are the Preferences for Eric stored? I've found the ~/.eric3 directory but that only seems to have a lock file, the task list and template lists. I want to change some of the preferences and I'd like to back up the original settings in case I make too

Re: [PyKDE] Auto-connecting Slots

2006-01-30 Thread Giovanni Bajo
Jesper Anderson [EMAIL PROTECTED] wrote: and when you want to avoid typing pyqtSignature: from PyQt4.QtCore import * from PyQt4.QtCore import pyqtSignature as signature Sure, or more simply: signature = pyqtSignature -- Giovanni Bajo ___