Bizarre arithmetic results

2010-02-11 Thread Terrence Cole
Can someone explain to me what python is doing here? Python 3.1.1 (r311:74480, Feb 3 2010, 13:36:47) [GCC 4.3.4] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> -0.1 ** 0.1 -0.7943282347242815 >>> a = -0.1; b = 0.1 >>> a ** b (0.7554510437117542+0.24546092364

Multiprocessing Fail

2009-10-12 Thread Terrence Cole
This code fails: ## from multiprocessing import Manager manager = Manager() ns_proxy = manager.Namespace() evt_proxy = manager.Event() ns_proxy.my_event_proxy = evt_proxy print ns_proxy.my_event_proxy ## Traceback (most recent call last): File "test_nsproxy.py", line 39, in print ns_