this isn't true anymore

This commit is contained in:
Benjamin Peterson 2011-02-26 21:32:16 +00:00
parent 2de51ff4e1
commit c6696d272f
2 changed files with 3 additions and 6 deletions

View File

@ -94,9 +94,7 @@ module, except those beginning with an underscore. This form may only be used
at the module level.
A target occurring in a :keyword:`del` statement is also considered bound for
this purpose (though the actual semantics are to unbind the name). It is
illegal to unbind a name that is referenced by an enclosing scope; the compiler
will report a :exc:`SyntaxError`.
this purpose (though the actual semantics are to unbind the name).
Each assignment or import statement occurs within a block defined by a class or
function definition or at the module level (the top-level code block).

View File

@ -5935,9 +5935,8 @@ posix_sendfile(PyObject *self, PyObject *args, PyObject *kwdict)
int flags = 0;
sf.headers = NULL;
sf.trailers = NULL;
static char *keywords[] = {"out", "in",
"offset", "count",
"headers", "trailers", "flags", NULL};
static char *keywords[] = {"out", "in", "offset", "count", "headers",
"trailers", "flags", NULL};
#ifdef __APPLE__
if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&O&|OOi:sendfile",