|
|
|
|
|
by UncleEntity
1209 days ago
|
|
The operator didn’t exist but the functionality did. It was just a side effect of python’s wonky variable scoping which they gave an operator. I’m not familiar with how it works now but the example I remember was the variables escaping from list comprehension statements, like: x = [y for y in z]
if y != z[-1]:
bad_stuff_happened()
Or something like that, maybe I’m wrong, honestly never had a use for the walrus. |
|