]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Patch #650834: Document 'U' in file mode, remove stale variables.
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 11 Dec 2002 13:06:53 +0000 (13:06 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 11 Dec 2002 13:06:53 +0000 (13:06 +0000)
Objects/fileobject.c

index b6c88dbf229f3923e6fe8a6fe67eb9d16f766f98..86620ff867ed6e2ec970aea49b63a46a5204e4fe 100644 (file)
@@ -1614,7 +1614,7 @@ static PyMemberDef file_memberlist[] = {
        {"softspace",   T_INT,          OFF(f_softspace), 0,
         "flag indicating that a space needs to be printed; used by print"},
        {"mode",        T_OBJECT,       OFF(f_mode),    RO,
-        "file mode ('r', 'w', 'a', possibly with 'b' or '+' added)"},
+        "file mode ('r', 'U', 'w', 'a', possibly with 'b' or '+' added)"},
        {"name",        T_OBJECT,       OFF(f_name),    RO,
         "file name"},
        /* getattr(f, "closed") is implemented without this table */
@@ -1767,13 +1767,9 @@ file_iternext(PyFileObject *f)
 {
        PyStringObject* l;
 
-       int i;
-
        if (f->f_fp == NULL)
                return err_closed();
 
-       i = f->f_softspace;
-
        l = readahead_get_line_skip(f, 0, READAHEAD_BUFSIZE);
        if (l == NULL || PyString_GET_SIZE(l) == 0) {
                Py_XDECREF(l);