From 16ef452c888d8d9785fce197ef9cec5d88bc47b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 28 Dec 2018 15:08:20 +0100 Subject: [PATCH] Profile --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7532b38..d70be94 100644 --- a/README.md +++ b/README.md @@ -1397,7 +1397,7 @@ def profiler(func): #### Decorator for function tracing: ```python def tracer(func): - """Prints input and output of a decorated function.""" + """Prints arguments and output of a decorated function.""" def out(*args, **kwargs): result = func(*args, **kwargs) arg_list = [str(x) for x in args]