Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions graalpython/lib-graalpython/patches/metadata.toml
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,11 @@ install-priority = 0
patch = 'pyperf-2.3.1.patch'
license = 'MIT'

[[pyperf.rules]]
version = '== 2.10.0'
patch = 'pyperf-2.10.0.patch'
license = 'MIT'

[[pyperformance.rules]]
version = '== 1.0.5'
patch = 'pyperformance-1.0.5.patch'
Expand Down
13 changes: 13 additions & 0 deletions graalpython/lib-graalpython/patches/pyperf-2.10.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/pyperf/_runner.py b/pyperf/_runner.py
index d87a2f6..e17780f 100644
--- a/pyperf/_runner.py
+++ b/pyperf/_runner.py
@@ -77,7 +77,7 @@ class Runner:
loops=0, min_time=0.1, metadata=None,
show_name=True,
program_args=None, add_cmdline_args=None,
- _argparser=None, warmups=1):
+ _argparser=None, warmups=None):

# Watchdog: ensure that only once instance of Runner (or a Runner
# subclass) is created per process to prevent bad surprises
Loading