Skip to content

Commit 8ffb33c

Browse files
committed
Remove print statements from benchmarks
1 parent 7f3089f commit 8ffb33c

File tree

4 files changed

+3
-91
lines changed

4 files changed

+3
-91
lines changed

graalpython/com.oracle.graal.python.benchmarks/python/meso/threadring.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# Copyright 2008-2010 Isaac Gouy
33
# Copyright (c) 2013, 2014, Regents of the University of California
4-
# Copyright (c) 2017, 2021, Oracle and/or its affiliates.
4+
# Copyright (c) 2017, 2025, Oracle and/or its affiliates.
55
# All rights reserved.
66
#
77
# Revised BSD license
@@ -54,7 +54,7 @@ def worker(worker_id):
5454
if n > 0:
5555
n = (yield (n - 1))
5656
else:
57-
print(worker_id)
57+
# print(worker_id)
5858
return
5959

6060

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-call-method-int-float.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070

7171
# ~igv~: function_root_count_at
7272
def count(num):
73-
print("###### NUM: " + str(num))
7473
for i in range(num):
7574
if 42 != as_double(42):
7675
raise RuntimeError()

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-call-method-minimal.py

Lines changed: 0 additions & 86 deletions
This file was deleted.

graalpython/com.oracle.graal.python.benchmarks/python/micro/c-call-method.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019, 2024, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2019, 2025, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0
@@ -146,7 +146,6 @@
146146

147147
# ~igv~: function_root_count_at
148148
def count(num):
149-
print("###### NUM: " + str(num))
150149
obj = NativeCustomType()
151150
total = 0
152151
for i in range(num):

0 commit comments

Comments
 (0)