Skip to content

Commit

Permalink
relaxing func_4
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco-Sulla committed Nov 19, 2023
1 parent a31eecb commit 47a8828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def trace(iterations = 100, mult = 10):
def decorator(func):
def wrapper():
print(
f"Loops: {iterations} - Evaluating: {func.__name__}",
f"Loops: {iterations} - Multiplier: {mult} Evaluating: {func.__name__}",
flush = True
)

Expand Down Expand Up @@ -139,7 +139,7 @@ def func_3():

functions.append(func_3)

@trace(iterations = 350, mult = 1.4)
@trace(iterations = 400, mult = 1.5)
def func_4():
pickle.loads(pickle.dumps(iter(fd_1.values())))

Expand Down

0 comments on commit 47a8828

Please sign in to comment.