Re: Synchronizing a sound with a widget change

2014-11-13 Thread Yimr Zero
Hi, You may try to add the sleep(5) after the color change statement. You could adjust the sleep time to let the color change and beep synchroize. Thanks. Yimr Zero From: ast Date: 2014-11-13 18:50 To: python-list Subject: Synchronizing a sound with a widget change Hello, here is a small

Re: Add "Received:" header to email msg in correct position?

2014-05-06 Thread Yimr Zero
If you use Python 2.7, you should add urllib, urllib2 modules. If you use Python 3, the two modules mentioned above are included in urllib. -- https://mail.python.org/mailman/listinfo/python-list

Re:Retrieve item deep in dict tree?

2014-04-03 Thread Yimr Zero
Here is a tricky method : reduce(lambda x,y:x[str(y)],keys,tree) -- Forwarded message -- From: Roy Smith To: Python List Cc: Date: Wed, 2 Apr 2014 13:58:16 -0400 Subject: Retrieve item deep in dict tree? I have a big hairy data structure which is a tree of nested dicts. I hav