I\'ve resolved this issue, but I\'m wondering why it was caused in the first place. I used BeautifulSoup to identify this span from a webpage:
span =
Probably because str(span.contents)
is calling the __str__
function inside the object span.contents
and returning a smaller representation. You can use the pympler to measure the memory consumption
Old stuff, but just in case other people wonder: span.contents
returns a reference to a NavigableString
instance. There is a link between this instance and the DOM tree, so that as long as this instance is in use, the whole DOM tree cannot be released from memory by the garbage collector. Thus, as long as restaurant.name
is not released from memory, the whole DOM tree is kept in memory.
Using str(span.contents)
returns a string which is not linked with the DOM tree, so it does not prevent the DOM tree from being released from memory.