Skip to content

Commit a98735b

Browse files
committed
adding wsgiref
1 parent 2c56eb6 commit a98735b

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-07-24T10:49:45Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-07-24T12:26:03Z</updated></feed>

source/content/pages/03-deployment/0311-wsgi-servers.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ WSGI v1.0 is superseded by
101101
[PEP 3333](http://www.python.org/dev/peps/pep-3333/), which defines the
102102
v1.0.1 WSGI standard.
103103

104+
[wsgiref in Python 2.x](https://docs.python.org/2/library/wsgiref.html) and
105+
[wsgiref in Python 3.x](https://docs.python.org/3.4/library/wsgiref.html)
106+
are the reference implementations of the WSGI specification built into
107+
Python's standard library so it can be used to build WSGI servers and
108+
applications.
109+
104110

105111
## Example web server configuration
106112
A web server's configuration specifies what requests should be passed to

wsgi-servers.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@ <h2>Official WSGI specifications</h2>
116116
WSGI v1.0 is superseded by
117117
<a href="http://www.python.org/dev/peps/pep-3333/">PEP 3333</a>, which defines the
118118
v1.0.1 WSGI standard.</p>
119+
<p><a href="https://docs.python.org/2/library/wsgiref.html">wsgiref in Python 2.x</a> and
120+
<a href="https://docs.python.org/3.4/library/wsgiref.html">wsgiref in Python 3.x</a>
121+
are the reference implementations of the WSGI specification built into
122+
Python's standard library so it can be used to build WSGI servers and
123+
applications.</p>
119124
<h2>Example web server configuration</h2>
120125
<p>A web server's configuration specifies what requests should be passed to
121126
the WSGI server to process. Once a request is processed and generated by the

0 commit comments

Comments
 (0)