I\'m doing some things in Python (3.3.3), and I came across something that is confusing me since to my understanding classes get a new id each time they are called.
A example where the memory location (and id) is not released is:
print([someClass() for i in range(10)])
Now the ids are all unique.