Skip to content

Commit c952c18

Browse files
committed
updating wsgi page
1 parent a98735b commit c952c18

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
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-24T12:26:03Z</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-24T13:06:13Z</updated></feed>

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ The WSGI standard v1.0 is specified in
9999
[PEP 0333](http://www.python.org/dev/peps/pep-0333/). As of September 2010,
100100
WSGI v1.0 is superseded by
101101
[PEP 3333](http://www.python.org/dev/peps/pep-3333/), which defines the
102-
v1.0.1 WSGI standard.
102+
v1.0.1 WSGI standard. If you're working with Python 2.x and you're compliant
103+
with PEP 0333, then you're also compliant with 3333. The newer version is
104+
simply an update for Python 3 and has instructions for how unicode should
105+
be handled.
103106

104107
[wsgiref in Python 2.x](https://docs.python.org/2/library/wsgiref.html) and
105108
[wsgiref in Python 3.x](https://docs.python.org/3.4/library/wsgiref.html)

wsgi-servers.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,10 @@ <h2>Official WSGI specifications</h2>
115115
<a href="http://www.python.org/dev/peps/pep-0333/">PEP 0333</a>. As of September 2010,
116116
WSGI v1.0 is superseded by
117117
<a href="http://www.python.org/dev/peps/pep-3333/">PEP 3333</a>, which defines the
118-
v1.0.1 WSGI standard.</p>
118+
v1.0.1 WSGI standard. If you're working with Python 2.x and you're compliant
119+
with PEP 0333, then you're also compliant with 3333. The newer version is
120+
simply an update for Python 3 and has instructions for how unicode should
121+
be handled.</p>
119122
<p><a href="https://docs.python.org/2/library/wsgiref.html">wsgiref in Python 2.x</a> and
120123
<a href="https://docs.python.org/3.4/library/wsgiref.html">wsgiref in Python 3.x</a>
121124
are the reference implementations of the WSGI specification built into

0 commit comments

Comments
 (0)