diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-14 17:36:51 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-14 17:58:05 +0000 |
commit | f0cdcd940e20bf049ccb19ca68a101a29d2ee8d1 (patch) | |
tree | 0a4a899693561fd378e75dcc305d7ef493dd47d5 /source4/web_server/wsgi.c | |
parent | f5fbba76c8743d6c4f25b9850e2c2c4353730cdf (diff) | |
download | samba-f0cdcd940e20bf049ccb19ca68a101a29d2ee8d1.tar.gz |
web_server: Build as module.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Nov 14 17:58:05 UTC 2010 on sn-devel-104
Diffstat (limited to 'source4/web_server/wsgi.c')
-rw-r--r-- | source4/web_server/wsgi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/web_server/wsgi.c b/source4/web_server/wsgi.c index bc55850c3bb..e1e21187284 100644 --- a/source4/web_server/wsgi.c +++ b/source4/web_server/wsgi.c @@ -5,17 +5,17 @@ Implementation of the WSGI interface described in PEP0333 (http://www.python.org/dev/peps/pep-0333) - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -189,7 +189,7 @@ static PyObject *py_input_read(PyObject *_self, PyObject *args, PyObject *kwargs ret = PyString_FromStringAndSize((char *)self->web->input.partial.data+self->offset, size); self->offset += size; - + return ret; } |