Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static.

This commit is contained in:
Matthias Klose 2010-11-16 20:07:51 +00:00
parent 6e6cb8e0e4
commit bee3316083
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ buffered_clear(buffered *self)
/* Because this can call arbitrary code, it shouldn't be called when
the refcount is 0 (that is, not directly from tp_dealloc unless
the refcount has been temporarily re-incremented). */
PyObject *
static PyObject *
buffered_dealloc_warn(buffered *self, PyObject *source)
{
if (self->ok && self->raw) {