]> granicus.if.org Git - python/commitdiff
Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/python-and...
authorChristian Heimes <christian@cheimes.de>
Thu, 2 Oct 2008 18:33:41 +0000 (18:33 +0000)
committerChristian Heimes <christian@cheimes.de>
Thu, 2 Oct 2008 18:33:41 +0000 (18:33 +0000)
Objects/frameobject.c

index 079c83171b1e891e5128f5a9b164febe9683590b..489e8bbe1f14ccb2bd78600b0a65f17e32ac7d3b 100644 (file)
@@ -517,7 +517,7 @@ frame_sizeof(PyFrameObject *f)
        nfrees = PyTuple_GET_SIZE(f->f_code->co_freevars);
        extras = f->f_code->co_stacksize + f->f_code->co_nlocals +
                 ncells + nfrees;
-       // subtract one as it is already included in PyFrameObject
+       /* subtract one as it is already included in PyFrameObject */
        res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *);
 
        return PyInt_FromSsize_t(res);