Made some more things static, and other cleanup for new naming scheme

This commit is contained in:
Guido van Rossum 1995-01-17 16:13:48 +00:00
parent 78c0535a22
commit cd938fc5a1
5 changed files with 10 additions and 11 deletions

View file

@ -73,7 +73,7 @@ AsString (value, tmp)
{
PyObject *v;
v = strobject (value);
v = PyObject_Str (value);
PyList_Append (tmp, v);
Py_DECREF (v);
return PyString_AsString (v);