##// END OF EJS Templates
Update docstring for TimeitTemplateFiller
Thomas Kluyver -
Show More
@@ -90,7 +90,11 b' class TimeitResult(object):'
90
90
91
91
92 class TimeitTemplateFiller(ast.NodeTransformer):
92 class TimeitTemplateFiller(ast.NodeTransformer):
93 "This is quite tightly tied to the template definition above."
93 """Fill in the AST template for timing execution.
94
95 This is quite closely tied to the template definition, which is in
96 :meth:`ExecutionMagics.timeit`.
97 """
94 def __init__(self, ast_setup, ast_stmt):
98 def __init__(self, ast_setup, ast_stmt):
95 self.ast_setup = ast_setup
99 self.ast_setup = ast_setup
96 self.ast_stmt = ast_stmt
100 self.ast_stmt = ast_stmt
General Comments 0
You need to be logged in to leave comments. Login now