bpo-30486: Make cell_set_contents() symbol private (#3668)

Don't export the cell_set_contents() symbol in the C API.
diff --git a/Objects/cellobject.c b/Objects/cellobject.c
index 8f16f07..af19229 100644
--- a/Objects/cellobject.c
+++ b/Objects/cellobject.c
@@ -142,7 +142,7 @@
     return op->ob_ref;
 }
 
-int
+static int
 cell_set_contents(PyCellObject *op, PyObject *obj)
 {
     Py_XINCREF(obj);