Reuse PyUnicode_Copy() in validate_and_copy_tuple()
diff --git a/Objects/codeobject.c b/Objects/codeobject.c
index 0489c7b..c5057bd 100644
--- a/Objects/codeobject.c
+++ b/Objects/codeobject.c
@@ -249,9 +249,7 @@
             return NULL;
         }
         else {
-            item = PyUnicode_FromUnicode(
-                PyUnicode_AS_UNICODE(item),
-                PyUnicode_GET_SIZE(item));
+            item = PyUnicode_Copy(item);
             if (item == NULL) {
                 Py_DECREF(newtuple);
                 return NULL;