aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:24:48 +0000
committerMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:24:48 +0000
commitff649b41e8f6b005fc08292760b29cefd135f1f2 (patch)
tree50183cf9ef9a45672cdb7a569fdaf27733ee78f0 /Objects/fileobject.c
parentFix last traces of old threading API. (diff)
downloadcpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.tar.gz
cpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.tar.bz2
cpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.zip
Make stdprinter_write static.
Diffstat (limited to 'Objects/fileobject.c')
-rw-r--r--Objects/fileobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index cda8a401b58..16ce5424fcd 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -377,7 +377,7 @@ PyFile_NewStdPrinter(int fd)
return (PyObject*)self;
}
-PyObject *
+static PyObject *
stdprinter_write(PyStdPrinter_Object *self, PyObject *args)
{
char *c;