diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-06-13 07:24:48 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-06-13 07:24:48 (GMT) |
commit | ff649b41e8f6b005fc08292760b29cefd135f1f2 (patch) | |
tree | 50183cf9ef9a45672cdb7a569fdaf27733ee78f0 /Objects/fileobject.c | |
parent | f992640ed39d2865920237a3454bdffb117fe6bc (diff) | |
download | cpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.zip cpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.tar.gz cpython-ff649b41e8f6b005fc08292760b29cefd135f1f2.tar.bz2 |
Make stdprinter_write static.
Diffstat (limited to 'Objects/fileobject.c')
-rw-r--r-- | Objects/fileobject.c | 2 |
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; |