What is different is the concept of "all globals that
> reference G".  For example:
>
> >>> a = [1, 2, 3]
> >>> b = a
> >>> a[0] = 0
> >>> print b
>
> [0, 2, 3]

I see that Python had an id too ;).

Mark
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to