On 2013-04-18 18:07, Neil Cerutti wrote: > There's no linking stage in Python. Everything you use must be > defined before you use it.
"must be defined", only if you don't want an error. But in python, it isn't even REQUIRED that it be defined: some_undefined_function("args go here") will bomb out your program, but Python graciously allows you to do so: >>> try: ... hello(42) ... except NameError: ... print "You had me at hello" ... You had me at hello -tkc -- http://mail.python.org/mailman/listinfo/python-list