Call me anal, but there was a particular phrase that was speading to

comments everywhere that bugged me: /* Foo is inlined */ instead of
/* Inline Foo */.  Somehow the "is inlined" phrase always confused me
for half a second (thinking, "No it isn't" until I added the missing
"here").  The new phrase is hopefully unambiguous.
This commit is contained in:
Guido van Rossum 2002-08-19 19:26:42 +00:00
parent 056fbf422d
commit e3a8e7ed1d
7 changed files with 9 additions and 9 deletions

View file

@ -199,7 +199,7 @@ PyComplex_FromCComplex(Py_complex cval)
{
register PyComplexObject *op;
/* PyObject_New is inlined */
/* Inline PyObject_New */
op = (PyComplexObject *) PyObject_MALLOC(sizeof(PyComplexObject));
if (op == NULL)
return PyErr_NoMemory();