I'm looking to do pointer-style variable assignments in Python. All the docs on Python say that pointers aren't necessary, since all variables in Python are object pointers. If this is the case, how would I get the following kind of behavior to work?
a = None
b = None
c = None
myList = [&a, &b, &c] #This doesn't work in Python, but it's how you'd do it in C
#I need the value assigned to the variable address and not the list object!
myList[0] = 1
Application.LogMessage(a) #Need this to return 1
Thanks,
Brad
---
Unsubscribe? Mail Majordomo(at)Softimage.COM with the following text in body:
unsubscribe xsi