summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKirill Podoprigora <kirill.bast9@mail.ru>2024-02-13 17:45:37 (GMT)
committerGitHub <noreply@github.com>2024-02-13 17:45:37 (GMT)
commit225cd55fe676d128518af31f53b63a591fc4a569 (patch)
tree55fdafb8ccc48a7e4aed7b11f4400aec99125ddd
parent02b63239f1e91f8a03c0b455c5201e6d07f642ab (diff)
downloadcpython-225cd55fe676d128518af31f53b63a591fc4a569.zip
cpython-225cd55fe676d128518af31f53b63a591fc4a569.tar.gz
cpython-225cd55fe676d128518af31f53b63a591fc4a569.tar.bz2
gh-115417: Remove accidentally left debugging print (#115418)
gh-115417: Remove debugging print
-rw-r--r--Modules/_testcapi/time.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_testcapi/time.c b/Modules/_testcapi/time.c
index 4fbf7dd..57eb913 100644
--- a/Modules/_testcapi/time.c
+++ b/Modules/_testcapi/time.c
@@ -75,7 +75,6 @@ test_pytime_time(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args))
printf("ERR! %d\n", (int)t);
return NULL;
}
- printf("... %d\n", (int)t);
return pytime_as_float(t);
}