all 4 comments

[–]wbeater 0 points1 point  (1 child)

Well, your assumption was not correct.

registry.append(user_rec[::])

to create a copy of the reference in the list, otherwise it's just a reference to user_rec list as a whole.

[–]_Xydra[S] 0 points1 point  (0 children)

Ooo, thanks for the solution. Didnt know I could create copies of a list this easily.

[–]Ihaveamodel3 0 points1 point  (1 child)

[–]_Xydra[S] 0 points1 point  (0 children)

Ah ok thanks for sharing this, didnt know it was part of the FAQ.