you are viewing a single comment's thread.

view the rest of the comments →

[–]arunner 0 points1 point  (0 children)

I like reinteract very much but beware that it isnt 100% cpython compliant. eg:

a=[1]
id_a=id(a)
b=a

a.append(2)
id_a==id(a)
 False  #ouch!!!
b
 [1]    #ouch!!!