summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:24:48 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:24:48 (GMT)
commitff649b41e8f6b005fc08292760b29cefd135f1f2 (patch)
tree50183cf9ef9a45672cdb7a569fdaf27733ee78f0
parentf992640ed39d2865920237a3454bdffb117fe6bc (diff)
downloadcpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.zip
cpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.tar.gz
cpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.tar.bz2
Make stdprinter_write static.
-rw-r--r--Objects/fileobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index cda8a40..16ce542 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;