>>>>> "Michael" == Michael <[EMAIL PROTECTED]> writes:
Michael> me?? My biggest confusion so far is the lack of pointers
Michael> in Python ......
Achtually, python uses pointers for everything. On the contrary there
are no "value types" in python.
MyClass* c = new MyClass(12,13);
is equal to
c = MyClass(12,13)
There is no equivalent to
MyClass c(12,13);
because it's not needed.
--
Ville Vainio http://tinyurl.com/2prnb
--
http://mail.python.org/mailman/listinfo/python-list
