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

Python Cprofile - Decorated Functions Obscuring Profile Visualization

I have a base class with a @classmethod which acts as a decorator for a large number of methods in … Read more Python Cprofile - Decorated Functions Obscuring Profile Visualization

Pypy Significantly Slower Than Cpython

I've been testing a cacheing system of my making. Its purpose is to speed up a Django web appli… Read more Pypy Significantly Slower Than Cpython

Saving Cprofile Results To Readable External File

I am using cProfile try to profile my codes: pr = cProfile.Profile() pr.enable() my_func() # the … Read more Saving Cprofile Results To Readable External File

Python CProfile - Decorated Functions Obscuring Profile Visualization

I have a base class with a @classmethod which acts as a decorator for a large number of methods in … Read more Python CProfile - Decorated Functions Obscuring Profile Visualization

PyPy Significantly Slower Than CPython

I've been testing a cacheing system of my making. Its purpose is to speed up a Django web appli… Read more PyPy Significantly Slower Than CPython