From: Kirill Podoprigora Date: Tue, 13 Feb 2024 17:45:37 +0000 (+0300) Subject: gh-115417: Remove accidentally left debugging print (#115418) X-Git-Tag: v3.13.0a4~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=225cd55fe676d128518af31f53b63a591fc4a569;p=thirdparty%2FPython%2Fcpython.git gh-115417: Remove accidentally left debugging print (#115418) gh-115417: Remove debugging print --- diff --git a/Modules/_testcapi/time.c b/Modules/_testcapi/time.c index 4fbf7dd14ebb..57eb9135d300 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); }