commit | ed2682be2f6de05ead5f777ed3aaee92180df4f9 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Oct 11 21:53:24 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Oct 11 21:53:24 2011 +0200 |
tree | 371fa62833d09c93402bebbae6ab24ea168b5807 | |
parent | beac78bb242ba56088570d9df3a852f581adc0d5 [diff] [blame] |
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;