diff options
author | Guido van Rossum <guido@python.org> | 2002-08-19 19:26:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-19 19:26:42 (GMT) |
commit | e3a8e7ed1d221e5c19d0b3cd9796b393bc41dc68 (patch) | |
tree | 2884b8565e41321e2bf453d7d34b4692a5583d10 /Objects/tupleobject.c | |
parent | 056fbf422de9bd73988e81053de43c733c6b3a8b (diff) | |
download | cpython-e3a8e7ed1d221e5c19d0b3cd9796b393bc41dc68.zip cpython-e3a8e7ed1d221e5c19d0b3cd9796b393bc41dc68.tar.gz cpython-e3a8e7ed1d221e5c19d0b3cd9796b393bc41dc68.tar.bz2 |
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.
Diffstat (limited to 'Objects/tupleobject.c')
-rw-r--r-- | Objects/tupleobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 678aeb1..4c52de3 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c @@ -48,7 +48,7 @@ PyTuple_New(register int size) #ifdef COUNT_ALLOCS fast_tuple_allocs++; #endif - /* PyObject_InitVar is inlined */ + /* Inline PyObject_InitVar */ #ifdef Py_TRACE_REFS op->ob_size = size; op->ob_type = &PyTuple_Type; |