Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4842f195
Commit
4842f195
authored
Jun 20, 2006
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uncomment wsgiref section
parent
7237965a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
Doc/whatsnew/whatsnew25.tex
Doc/whatsnew/whatsnew25.tex
+6
-8
No files found.
Doc/whatsnew/whatsnew25.tex
View file @
4842f195
...
...
@@ -2074,10 +2074,9 @@ Marc-Andr\'e Lemburg.}
%======================================================================
%
\subsection{The wsgiref package\label{module-wsgiref}}
\subsection
{
The wsgiref package
\label
{
module-wsgiref
}}
% XXX should this be in a PEP 333 section instead?
\begin{comment}
The Web Server Gateway Interface (WSGI) v1.0 defines a standard
interface between web servers and Python web applications and is
...
...
@@ -2086,10 +2085,7 @@ implementation of the WSGI specification.
The package includes a basic HTTP server that will run a WSGI
application; this server is useful for debugging but isn't intended for
production use.
% XXX structure of WSGI applications?
% XXX provide an example using Django or some other framework?
production use. Setting up a server takes only a few lines of code:
\begin{verbatim}
from wsgiref import simple
_
server
...
...
@@ -2102,17 +2098,19 @@ httpd = make_server(host, port, wsgi_app)
httpd.serve
_
forever()
\end{verbatim}
% XXX discuss structure of WSGI applications?
% XXX provide an example using Django or some other framework?
\begin{seealso}
\seeurl
{
http://www.wsgi.org
}{
A central web site for WSGI-related resources.
}
\seepep
{
333
}{
Python Web Server Gateway Interface v1.0
}{
PEP written by
Phillip J. Eby.
}
\end{seealso}
\end{comment}
% ======================================================================
\section
{
Build and C API Changes
\label
{
build-api
}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment