summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-19 19:26:42 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-19 19:26:42 (GMT)
commite3a8e7ed1d221e5c19d0b3cd9796b393bc41dc68 (patch)
tree2884b8565e41321e2bf453d7d34b4692a5583d10 /Objects/floatobject.c
parent056fbf422de9bd73988e81053de43c733c6b3a8b (diff)
downloadcpython-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/floatobject.c')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 2787a0a..36e861e 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -64,7 +64,7 @@ PyFloat_FromDouble(double fval)
if ((free_list = fill_free_list()) == NULL)
return NULL;
}
- /* PyObject_New is inlined */
+ /* Inline PyObject_New */
op = free_list;
free_list = (PyFloatObject *)op->ob_type;
PyObject_INIT(op, &PyFloat_Type);