From e3a8e7ed1d221e5c19d0b3cd9796b393bc41dc68 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 19 Aug 2002 19:26:42 +0000 Subject: 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. --- Objects/bufferobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/bufferobject.c') diff --git a/Objects/bufferobject.c b/Objects/bufferobject.c index 690f56b702..c0e3c80da4 100644 --- a/Objects/bufferobject.c +++ b/Objects/bufferobject.c @@ -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(); -- cgit v1.2.1