On Thu, 14 Oct 2010, Nick Dokos wrote:
is certainly a lot of room for disagreement, but
Python, in particular,
has a fairly strict type system. It is dynamic (execution-time)
So how do I, in Python, declare that variable 'foo'
must only ever be an integer. Then, when my program
accidentally tries to assign a string, unicode string,
tuple, list, or class instance -- I want it to throw a
compile-time error. How do I do that?
-gabriel