mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
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:
parent
056fbf422d
commit
e3a8e7ed1d
7 changed files with 9 additions and 9 deletions
|
@ -138,7 +138,7 @@ PyBuffer_New(int size)
|
|||
"size must be zero or positive");
|
||||
return NULL;
|
||||
}
|
||||
/* PyObject_New is inlined */
|
||||
/* Inline PyObject_New */
|
||||
o = PyObject_MALLOC(sizeof(*b) + size);
|
||||
if ( o == NULL )
|
||||
return PyErr_NoMemory();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue