Skip to content

Commit fefeca5

Browse files
committed
Merged revisions 66739 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66739 | christian.heimes | 2008-10-02 20:33:41 +0200 (Thu, 02 Oct 2008) | 1 line Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/python-and-bragging-about-c89/ ........
1 parent ecc3336 commit fefeca5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/frameobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ frame_sizeof(PyFrameObject *f)
522522
nfrees = PyTuple_GET_SIZE(f->f_code->co_freevars);
523523
extras = f->f_code->co_stacksize + f->f_code->co_nlocals +
524524
ncells + nfrees;
525-
// subtract one as it is already included in PyFrameObject
525+
/* subtract one as it is already included in PyFrameObject */
526526
res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *);
527527

528528
return PyLong_FromSsize_t(res);

0 commit comments

Comments
 (0)