diff options
author | Guido van Rossum <guido@python.org> | 1997-01-18 07:57:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-01-18 07:57:16 (GMT) |
commit | c6d0670f1bc77c413892f6089bc20902a59f8f02 (patch) | |
tree | 671a6793701a44586241645991324ada32de121b /Objects/object.c | |
parent | 2a61e7428d5b45fe778b7766bb623d780162f402 (diff) | |
download | cpython-c6d0670f1bc77c413892f6089bc20902a59f8f02.zip cpython-c6d0670f1bc77c413892f6089bc20902a59f8f02.tar.gz cpython-c6d0670f1bc77c413892f6089bc20902a59f8f02.tar.bz2 |
Intern the strings created in getattr() and setattr().
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/object.c b/Objects/object.c index 0af31ba..fc1d086 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -335,7 +335,7 @@ getattr(v, name) { if (v->ob_type->tp_getattro != NULL) { object *w, *res; - w = newstringobject(name); + w = PyString_InternFromString(name); if (w == NULL) return NULL; res = (*v->ob_type->tp_getattro)(v, w); @@ -375,7 +375,7 @@ setattr(v, name, w) if (v->ob_type->tp_setattro != NULL) { object *s; int res; - s = newstringobject(name); + s = PyString_InternFromString(name); if (s == NULL) return -1; res = (*v->ob_type->tp_setattro)(v, s, w); |