Since 4/25/2012 4:58:28 PM, nospam252 has written 1 articles and participated in 1721 conversations. nospam252 signature: nospam252
nospam252's articles:
Items(1) /1
those darn exceptions159 (6/21/2011 1:43:39 AM) comp.lang.python Exceptions are great, but... Sometimes when calling a function, you want to catch some or even all the various exceptions it could raise. What exceptions *are* those? It can be pretty obvious. For instance,... Chris
Significant figures calculation2117 (6/24/2011 8:05:41 PM) comp.lang.python Hi, I am looking for an easy way to do significant figure calculations in python (which I want to use with a class that does unit calculations). Significant figure calculations should have the semantics explai... dadapapa(49)
try... except with unknown error types2927 (8/19/2011 7:09:12 PM) comp.lang.python Hi Python users, I have been using try...except statements in the situations where I can expect a certain type of errors might occur. But sometimes I don't exactly know the possible error types, or sometimes... Yingjie.Lin(6)
Why doesn't threading.join() return a value?1517 (9/2/2011 2:53:35 PM) comp.lang.python I have a function I want to run in a thread and return a value. It seems like the most obvious way to do this is to have my target function return the value, the Thread object stash that someplace, and return ... roy(1980)
Algorithms Library - Asking for Pointers618 (9/2/2011 4:59:03 PM) comp.lang.python Hello: I am working on an algorithms library. It provides LINQ like functionality to Python iterators. Eventually, I plan on having feaures that work against sequences and mappings. I have the code up at http... jehugaleahsa(78)