Skip to content Skip to sidebar Skip to footer
Showing posts with the label Garbage Collection

Python Ordered Garbage Collectible Dictionary?

I want my Python program to be deterministic, so I have been using OrderedDicts extensively through… Read more Python Ordered Garbage Collectible Dictionary?

Overriding Destructors Without Calling Their Parents

I'm writing a class that inherits from some library. In said class I'm overriding the destr… Read more Overriding Destructors Without Calling Their Parents

Python: Logging The Garbage Collector

I have a python application that has some performance hiccups. I want to add the garbage collector&… Read more Python: Logging The Garbage Collector

Doubly Linked List - Garbage Collection

I have created a doubly linked list. My list contains only 2 elements (suppose node1 and node2) an… Read more Doubly Linked List - Garbage Collection