]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-115417: Remove accidentally left debugging print (#115418)
authorKirill Podoprigora <kirill.bast9@mail.ru>
Tue, 13 Feb 2024 17:45:37 +0000 (20:45 +0300)
committerGitHub <noreply@github.com>
Tue, 13 Feb 2024 17:45:37 +0000 (18:45 +0100)
gh-115417: Remove debugging print

Modules/_testcapi/time.c

index 4fbf7dd14ebb663a352b290cc1cf0df0e0a55bcb..57eb9135d300296ed7b97402ed82e4a5d7d268a3 100644 (file)
@@ -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);
 }