From 28518b1ada62ca45bfa547b0a5e14305bc14c1b9 Mon Sep 17 00:00:00 2001 From: Mark van Lent Date: Tue, 20 Oct 2015 21:05:09 +0200 Subject: [PATCH 1/5] Replace the "non breaking space" unicode character with a normal space. --- docs/scenarios/gui.rst | 2 +- docs/shipping/freezing.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/scenarios/gui.rst b/docs/scenarios/gui.rst index 466dec066..da2944750 100644 --- a/docs/scenarios/gui.rst +++ b/docs/scenarios/gui.rst @@ -15,7 +15,7 @@ and the mailing list https://groups.google.com/forum/#!forum/project-camelot Cocoa ----- -.. note:: The Cocoa framework is only available on OS X. Don't pick this if you're writing a cross-platform application! +.. note:: The Cocoa framework is only available on OS X. Don't pick this if you're writing a cross-platform application! GTk --- diff --git a/docs/shipping/freezing.rst b/docs/shipping/freezing.rst index 13454298c..80f53358f 100644 --- a/docs/shipping/freezing.rst +++ b/docs/shipping/freezing.rst @@ -107,7 +107,7 @@ Prerequisite is to have installed :ref:`Python, Setuptools and pywin32 dependenc - `Manual `_ -OS X +OS X ---- From 25c0331da8a9ca79a005180916186ba6ce1a1bea Mon Sep 17 00:00:00 2001 From: Mark van Lent Date: Tue, 20 Oct 2015 21:06:04 +0200 Subject: [PATCH 2/5] Fix underlines that were too short. --- docs/intro/learning.rst | 2 +- docs/intro/news.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/learning.rst b/docs/intro/learning.rst index ba4a95965..397165821 100644 --- a/docs/intro/learning.rst +++ b/docs/intro/learning.rst @@ -130,7 +130,7 @@ no previous programming experience. Learn to Program in Python with Codeacademy -~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ A Codeacademy course for the absolute Python beginner. This free and interactive course provides and teaches the basics (and beyond) of Python programming whilst testing the user's knowledge in between progress. diff --git a/docs/intro/news.rst b/docs/intro/news.rst index b48e8bd11..429749016 100644 --- a/docs/intro/news.rst +++ b/docs/intro/news.rst @@ -41,7 +41,7 @@ Python News is the news section in the official Python web site `Python News `_ Import Python Weekly -~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~ Weekly Python Newsletter containing Python Articles, Projects, Videos, Tweets delivered in your inbox. Keep Your Python Programming Skills Updated. From d8b6a22f5854f70f9b8420584ef36de196a93035 Mon Sep 17 00:00:00 2001 From: Mark van Lent Date: Tue, 20 Oct 2015 21:09:25 +0200 Subject: [PATCH 3/5] Fix duplicate target name "here". --- docs/scenarios/imaging.rst | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/scenarios/imaging.rst b/docs/scenarios/imaging.rst index 421793a6a..7ae952d37 100644 --- a/docs/scenarios/imaging.rst +++ b/docs/scenarios/imaging.rst @@ -20,8 +20,8 @@ Installation ~~~~~~~~~~~~ Before installing Pillow, you'll have to install Pillow's prerequisites. Find -the instructions for your platform -`here `_. +the instructions for your platform in the +`Pillow installation instructions `_. After that, it's straightforward: @@ -53,7 +53,5 @@ Example exif_data = im._getexif() exif_data -There are more examples of the Pillow library -`here `_. - - +There are more examples of the Pillow library in the +`Pillow tutorial `_. From 1f68a425ddcf2791d068919cc8752654bfb632c1 Mon Sep 17 00:00:00 2001 From: Mark van Lent Date: Tue, 20 Oct 2015 21:12:42 +0200 Subject: [PATCH 4/5] Fix duplicate target name "uwsgi". --- docs/scenarios/web.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/scenarios/web.rst b/docs/scenarios/web.rst index 14080f341..9a5c7603b 100644 --- a/docs/scenarios/web.rst +++ b/docs/scenarios/web.rst @@ -167,8 +167,8 @@ programming languages and protocols - including Python and WSGI. uWSGI can either be run as a stand-alone web router, or be run behind a full web server (such as Nginx or Apache). In the latter case, a web server can configure uWSGI and an application's operation over the -`uwsgi `_ -protocol. uWSGI's web server support allows for dynamically configuring +`uwsgi protocol `_. +uWSGI's web server support allows for dynamically configuring Python, passing environment variables and further tuning. For full details, see `uWSGI magic variables `_. From 36faeccf6a2a34c1b1f25b7c9b01734956821ed0 Mon Sep 17 00:00:00 2001 From: Mark van Lent Date: Tue, 20 Oct 2015 21:15:05 +0200 Subject: [PATCH 5/5] Fix "Literal block expected; none found." warning. --- docs/shipping/freezing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/shipping/freezing.rst b/docs/shipping/freezing.rst index 80f53358f..8b01d647e 100644 --- a/docs/shipping/freezing.rst +++ b/docs/shipping/freezing.rst @@ -75,7 +75,7 @@ Prerequisite is to install :ref:`Python on Windows `. 1. Download and install http://sourceforge.net/projects/py2exe/files/py2exe/ -2. Write :file:`setup.py` (`List of configuration options `_):: +2. Write :file:`setup.py` (`List of configuration options `_): .. code-block:: python