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 sdaoden
Recipients giampaolo.rodola, pitrou, rosslagerwall, sdaoden
Date 2011-03-01.13:52:02
SpamBayes Score 0.00039423798
Marked as misclassified No
Message-id <20110301135155.GB8043@sherwood.local>
In-reply-to <1298986813.3709.3.camel@localhost.localdomain>
Content
But, dear Antoine, i don't know *any* editor that is capable to 
handle the following code correctly:

#ifdef __APPLE__
    if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&O&|OOi:sendfile",
        keywords, &out, &in, _parse_off_t, &offset, _parse_off_t, &sbytes,
#else
    if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&n|OOi:sendfile",
        keywords, &out, &in, _parse_off_t, &offset, &len,
#endif
                &headers, &trailers, &flags))

> Antoine Pitrou <pitrou@free.fr> added the comment:
> 
> Problem is, each developer has his/her own preferences and editor
> settings, so if we start reformatting with each commit, the history of a
> piece of code becomes very difficult to read.
> 
> I would simply suggest that you disable these vim settings, or at least
> tweak them so that they don't apply automatically when you edit existing
> code.
History
Date User Action Args
2011-03-01 13:52:02sdaodensetrecipients: + sdaoden, pitrou, giampaolo.rodola, rosslagerwall
2011-03-01 13:52:02sdaodenlinkissue11351 messages
2011-03-01 13:52:02sdaodencreate