Skip to content Skip to sidebar Skip to footer
Showing posts with the label Immutability

Why Don't Tuples Get The Same Id When Assigned The Same Values?

When I executed the following steps, both tuples (a and b) haven't retained their original IDs … Read more Why Don't Tuples Get The Same Id When Assigned The Same Values?

Wrapping Big List In Python 2.7 To Make It Immutable

In case I have a really big list (>100k elements) that can be retrieved from some object through… Read more Wrapping Big List In Python 2.7 To Make It Immutable

Why Do Tuples In Python Work With Reversed But Do Not Have __reversed__?

In discussion of this answer we realized that tuples do not have a __reversed__ method. My guess wa… Read more Why Do Tuples In Python Work With Reversed But Do Not Have __reversed__?