SF patch #491049 (David Jacobs): Small PyString_FromString optimization

PyString_FromString():
  Since the length of the string is already being stored in size,
  changed the strcpy() to a memcpy() for a small speed improvement.
This commit is contained in:
Guido van Rossum 2001-12-10 15:45:54 +00:00
parent 49bdaede1b
commit 169192e818
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ PyString_FromString(const char *str)
#ifdef INTERN_STRINGS
op->ob_sinterned = NULL;
#endif
strcpy(op->ob_sval, str);
memcpy(op->ob_sval, str, size+1);
#ifndef DONT_SHARE_SHORT_STRINGS
if (size == 0) {
PyObject *t = (PyObject *)op;