From d95a4e23658fc3d1e2bb25e8f7bd202cc253234f Mon Sep 17 00:00:00 2001 From: ruang Date: Thu, 3 Oct 2024 09:19:25 +0800 Subject: [PATCH] Nop --- Modules/_testcapi/file.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Modules/_testcapi/file.c b/Modules/_testcapi/file.c index 634563f6ea12cb..762bdb2ff7fb73 100644 --- a/Modules/_testcapi/file.c +++ b/Modules/_testcapi/file.c @@ -2,7 +2,14 @@ #include "util.h" +static PyObject * +test_file_from_fd(PyObject *self, PyObject *args) +{ + +} + static PyMethodDef test_methods[] = { + {"", test_file_from_fd, METH_VARARGS}, {NULL}, };