Hacker News new | ask | show | jobs
by KerrickStaley 123 days ago

  a = b = []
has the same semantics here as

  b = []
  a = b
which I don't find surprising.