diff options
author | Kirill Podoprigora <kirill.bast9@mail.ru> | 2024-02-13 17:45:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 17:45:37 (GMT) |
commit | 225cd55fe676d128518af31f53b63a591fc4a569 (patch) | |
tree | 55fdafb8ccc48a7e4aed7b11f4400aec99125ddd | |
parent | 02b63239f1e91f8a03c0b455c5201e6d07f642ab (diff) | |
download | cpython-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.c | 1 |
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); } |