Eliminate duplicated assignment in _randommodule.c (GH-25904) (GH-25909)

diff --git a/Modules/_randommodule.c b/Modules/_randommodule.c
index cae49a0..0137e34 100644
--- a/Modules/_randommodule.c
+++ b/Modules/_randommodule.c
@@ -597,7 +597,7 @@ _random_exec(PyObject *module)
     }
 
     /* Look up and save int.__abs__, which is needed in random_seed(). */
-    PyObject *longval = longval = PyLong_FromLong(0);
+    PyObject *longval = PyLong_FromLong(0);
     if (longval == NULL) {
         return -1;
     }