Mikeh Sheppardi retweetledi

Rewriting a module to make it Idempotent. What is it?
my_set.discard(x) has exactly the same effect as doing the
same operation twice
my_set.discard(x)
my_set.discard(x)
Very powerful to simplify your code for retrying an operation.
#SoftwareEngineering #architecture
English






