Re: An ordered dictionary for the Python library?

2007-09-13 Thread Jürgen Urner
Puh, what a discussion... most common use case I can think of is >> d = {'a': 1, 'b': 2, 'c': 3} >> for key in d: >> # do something that relies on order of keys as specified in the >> constructor It's a bit tireing having to type >> for key in sorted(d.keys()): >> do_somethig_with(d[ke

Re: Python for embedded systems with memory constraints

2007-06-05 Thread Jürgen Urner
Who else is using python (programmers, scientists, finance)? Me! Graduated in fine arts. Python is what I do when I am fed up with all those colors. Much easier to manufacture sense with. -- http://mail.python.org/mailman/listinfo/python-list

Re: Get a control over a window

2007-05-15 Thread Jürgen Urner
On 15 Mai, 15:06, Tom Gur <[EMAIL PROTECTED]> wrote: > Hi, > > I was wondering how do I get control over a window (Win32). > to be more specific, I need to find a handle to a window of a certain > program and minimize the window. There are many ways to get the handle of a window. Assuming you ha