[issue11351] Mac OS X os.sendfile()

Antoine Pitrou report at bugs.python.org
Tue Mar 1 15:05:56 CET 2011


Antoine Pitrou <pitrou at free.fr> added the comment:

> 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.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue11351>
_______________________________________


More information about the Python-bugs-list mailing list