Re: *.py source file surprisingly deleted with Pydev/Eclipse. Who else experienced this ?

2008-04-05 Thread Alex9968
Gabriel Genellina wrote: En Fri, 04 Apr 2008 15:46:48 -0300, Alex9968 [EMAIL PROTECTED] escribió: Nebur wrote: No, I can't reproduce it, and I don't know whom to blame (Pydev? Eclipse ? The File System ? A Virus that only 2 times in half a year deletes a single file I'm busy

Re: *.py source file surprisingly deleted with Pydev/Eclipse. Who else experienced this ?

2008-04-04 Thread Alex9968
Nebur wrote: No, I can't reproduce it, and I don't know whom to blame (Pydev? Eclipse ? The File System ? A Virus that only 2 times in half a year deletes a single file I'm busy working with, and seems to do nothing else? Myself beeing schizophrenic ??) A virus created to remind you 2 times in

Get all strings matching given RegExp

2008-04-03 Thread Alex9968
Can I get sequence of all strings that can match a given regular expression? For example, for expression '(a|b)|(x|y)' it would be ['ax', 'ay', 'bx', 'by'] It would be useful for example to pass these strings to a search engine not supporting RegExp (therefore adding such support to it). A

Re: GUI toolkits with Tkinter's .pack() alternative

2008-03-27 Thread Alex9968
Guilherme Polo wrote: 2008/3/27, Alex9968 [EMAIL PROTECTED]: Guilherme Polo wrote: 2008/3/26, Alex9968 [EMAIL PROTECTED]: Hi all, I use Tkinter's Pack widget geometry manager (I really prefer it over using visual GUI designers), so my question is which other GUI toolkits

Re: GUI toolkits with Tkinter's .pack() alternative

2008-03-27 Thread Alex9968
Guilherme Polo wrote: 2008/3/27, Alex9968 [EMAIL PROTECTED]: Guilherme Polo wrote: 2008/3/27, Alex9968 [EMAIL PROTECTED]: Guilherme Polo wrote: 2008/3/26, Alex9968 [EMAIL PROTECTED]: Hi all, I use Tkinter's Pack widget geometry manager (I really prefer

Re: GUI toolkits with Tkinter's .pack() alternative

2008-03-27 Thread Alex9968
Guilherme Polo wrote: 2008/3/27, Alex9968 [EMAIL PROTECTED]: Guilherme Polo wrote: 2008/3/27, Alex9968 [EMAIL PROTECTED]: Guilherme Polo wrote: 2008/3/26, Alex9968 [EMAIL PROTECTED]: Hi all, I use Tkinter's Pack widget geometry manager (I really prefer

GUI toolkits with Tkinter's .pack() alternative

2008-03-26 Thread Alex9968
Hi all, I use Tkinter's Pack widget geometry manager (I really prefer it over using visual GUI designers), so my question is which other GUI toolkits have similar functionality. Secondly, I like the detailed widget borders configuration possible in Tkinter, which can be used to tweak GUI

Re: GUI toolkits with Tkinter's .pack() alternative

2008-03-26 Thread Alex9968
Guilherme Polo wrote: 2008/3/26, Alex9968 [EMAIL PROTECTED]: Hi all, I use Tkinter's Pack widget geometry manager (I really prefer it over using visual GUI designers), so my question is which other GUI toolkits have similar functionality. The geometry manager isn't related

Tkinter.Text widget - how to get text cursor position?

2008-03-19 Thread Alex9968
Is it possible to get position (in numbers) of the insertion cursor? As I understood, Text widget uses mark named INSERT to store it, which is available globally by just referencing INSERT, but how could I get actual coordinate numbers of the mark? I need this because I want not just to insert

Re: Tkinter.Text widget - how to get text cursor position?

2008-03-19 Thread Alex9968
Alex9968 wrote: Is it possible to get position (in numbers) of the insertion cursor? As I understood, Text widget uses mark named INSERT to store it, which is available globally by just referencing INSERT, but how could I get actual coordinate numbers of the mark? I need this because I