class

Forum discussion tagged with class.
  1. yhelothar

    Question How do you develop python classes that contains computationally expensive code?

    So I'm writing a class that contains a couple of methods that need to be run in succession. Some of the earlier methods are computationally expensive and can take 5+ minutes to run. If I want to test code in the later methods, I need to re-instantiate the object with the modified code, then...