This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jim Nasby
Recipients Jim Nasby, docs@python
Date 2016-01-17.23:37:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1453073854.16.0.698165135506.issue26142@psf.upfronthosting.co.za>
In-reply-to
Content
The code for the set_all() example has a formatting bug:

            return -1;
    }
        Py_DECREF(index);
    }

it should be

            return -1;
        }
        Py_DECREF(index);
    }
History
Date User Action Args
2016-01-17 23:37:34Jim Nasbysetrecipients: + Jim Nasby, docs@python
2016-01-17 23:37:34Jim Nasbysetmessageid: <1453073854.16.0.698165135506.issue26142@psf.upfronthosting.co.za>
2016-01-17 23:37:34Jim Nasbylinkissue26142 messages
2016-01-17 23:37:34Jim Nasbycreate