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 pitrou
Recipients giampaolo.rodola, pitrou, rosslagerwall, sdaoden
Date 2011-03-01.14:05:56
SpamBayes Score 8.99568e-05
Marked as misclassified No
Message-id <1298988354.3709.4.camel@localhost.localdomain>
In-reply-to <20110301135155.GB8043@sherwood.local>
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))

What do you mean with "handling"? If you are asking your editor to
understand the C language, then it might indeed have a problem.
If you are asking your editor to simply edit test, it should work fine.
History
Date User Action Args
2011-03-01 14:05:56pitrousetrecipients: + pitrou, giampaolo.rodola, rosslagerwall, sdaoden
2011-03-01 14:05:56pitroulinkissue11351 messages
2011-03-01 14:05:56pitroucreate