Socket connection

sik0fewl xxdigitalhellxx at hotmail.com
Fri Mar 7 09:59:39 EST 2003


Hey,

I fixed the problem, thanks for your input, guys. It problem ended up 
having to do with assigning a list to another list. (That's what I get 
for not posting all my code)

I had no idea that x = y just references y to x (when x & y are lists).
ie,
 >>> x = []
 >>> y = x
 >>> id(x)
17763920
 >>> id(y)
17763920

Could somebody point me to the documentation on this?

-- 
Thanks,
Ryan





More information about the Python-list mailing list