diff options
author | Guido van Rossum <guido@python.org> | 2007-02-09 23:20:19 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-02-09 23:20:19 +0000 |
commit | 07957a99722f426378ea7d54f45988d7e6f47bdb (patch) | |
tree | de725afabaa2a7972b7260c50042816bbbe42925 /Include/fileobject.h | |
parent | 3b152955e7f0a24123825e166b6354356f5f88d8 (diff) | |
download | cpython-07957a99722f426378ea7d54f45988d7e6f47bdb.tar.gz |
Kill off softspace completely (except in formatter.py which seems to have
a different feature with the same name).
The change to test_doctest.txt reduces the doctest failures to 3.
Diffstat (limited to 'Include/fileobject.h')
-rw-r--r-- | Include/fileobject.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h index ebbb521d17..ee7c4ee407 100644 --- a/Include/fileobject.h +++ b/Include/fileobject.h @@ -13,7 +13,6 @@ typedef struct { PyObject *f_name; PyObject *f_mode; int (*f_close)(FILE *); - int f_softspace; /* Flag used by 'print' command */ int f_binary; /* Flag which indicates whether the file is open in binary (1) or text (0) mode */ char* f_buf; /* Allocated readahead buffer */ @@ -41,7 +40,6 @@ PyAPI_FUNC(FILE *) PyFile_AsFile(PyObject *); PyAPI_FUNC(PyObject *) PyFile_Name(PyObject *); PyAPI_FUNC(PyObject *) PyFile_GetLine(PyObject *, int); PyAPI_FUNC(int) PyFile_WriteObject(PyObject *, PyObject *, int); -PyAPI_FUNC(int) PyFile_SoftSpace(PyObject *, int); PyAPI_FUNC(int) PyFile_WriteString(const char *, PyObject *); PyAPI_FUNC(int) PyObject_AsFileDescriptor(PyObject *); |