From: Matthias Klose Date: Tue, 16 Nov 2010 20:07:51 +0000 (+0000) Subject: Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static. X-Git-Tag: v3.2b1~359 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bee3316083429b8777f2b7a984c35c281933849a;p=thirdparty%2FPython%2Fcpython.git Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static. --- diff --git a/Modules/_io/bufferedio.c b/Modules/_io/bufferedio.c index 504e2cbd1409..7661a00056ae 100644 --- a/Modules/_io/bufferedio.c +++ b/Modules/_io/bufferedio.c @@ -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) {