Fix a memory leak when initializing the standard I/O streams.
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 761110a..bff04de 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1032,7 +1032,8 @@
         const char * encoding;
         encoding = _PyUnicode_AsString(encoding_attr);
         if (encoding != NULL) {
-            _PyCodec_Lookup(encoding);
+            PyObject *codec_info = _PyCodec_Lookup(encoding);
+            Py_XDECREF(codec_info);
         }
         Py_DECREF(encoding_attr);
     }