equivalent to C pointer
Tim Chase
python.list at tim.thechases.com
Thu Apr 18 14:48:41 EDT 2013
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
More information about the Python-list
mailing list