Skip to content

Commit f9a93b1

Browse files
committed
cleaning up wording on wsgi servers why section
1 parent 1fc54d0 commit f9a93b1

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
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-03-16T09:41:22Z</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-03-16T09:44:47Z</updated></feed>

source/content/pages/07-wsgi-servers/0701-wsgi-servers.markdown

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ running Python web applications.
1111

1212

1313
## Why are WSGI servers necessary?
14-
A traditional web server does not understand or have any way to execute Python
15-
code. In the late 1990s, a developer named Grisha Trubetskoy
14+
A traditional web server does not understand or have any way to run Python
15+
applications. In the late 1990s, a developer named Grisha Trubetskoy
1616
[came up with an Apache module called mod\_python](http://grisha.org/blog/2013/10/25/mod-python-the-long-story/)
17-
to execute Python code. For several years in the late 1990s and early 2000s,
18-
Apache configured with mod\_python ran most of the Python web applications
19-
on the web.
17+
to execute arbitrary Python code. For several years in the late 1990s
18+
and early 2000s, Apache configured with mod\_python ran most Python web
19+
applications.
2020

21-
However, mod\_python wasn't a standard. It was just an implementation that
22-
allowed arbitrary Python code to run on a server. As mod\_python's
21+
However, mod\_python wasn't a actual standard. It was just an implementation
22+
that allowed Python code to run on a server. As mod\_python's
2323
development stalled and security vulnerabilities were discovered there
2424
was recognition by the community that a consistent way to execute Python
2525
code for web applications was needed.

wsgi-servers.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ <h1>WSGI Servers</h1>
7878
(WSGI) server implements the web server side of the WSGI interface for
7979
running Python web applications. </p>
8080
<h2>Why are WSGI servers necessary?</h2>
81-
<p>A traditional web server does not understand or have any way to execute Python
82-
code. In the late 1990s, a developer named Grisha Trubetskoy
81+
<p>A traditional web server does not understand or have any way to run Python
82+
applications. In the late 1990s, a developer named Grisha Trubetskoy
8383
<a href="http://grisha.org/blog/2013/10/25/mod-python-the-long-story/">came up with an Apache module called mod_python</a>
84-
to execute Python code. For several years in the late 1990s and early 2000s,
85-
Apache configured with mod_python ran most of the Python web applications
86-
on the web.</p>
87-
<p>However, mod_python wasn't a standard. It was just an implementation that
88-
allowed arbitrary Python code to run on a server. As mod_python's
84+
to execute arbitrary Python code. For several years in the late 1990s
85+
and early 2000s, Apache configured with mod_python ran most Python web
86+
applications.</p>
87+
<p>However, mod_python wasn't a actual standard. It was just an implementation
88+
that allowed Python code to run on a server. As mod_python's
8989
development stalled and security vulnerabilities were discovered there
9090
was recognition by the community that a consistent way to execute Python
9191
code for web applications was needed.</p>

0 commit comments

Comments
 (0)