diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-23 16:21:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-23 16:21:57 (GMT) |
commit | 2a6145290be7aec586c170ce7e405fb3813f39fd (patch) | |
tree | e11049c936061e28d6a3ca57c5b132f2c1205531 /Doc/howto | |
parent | ae2ee96ad797435963e9aa13d54d52db765486c9 (diff) | |
parent | a4d170d985df52d3fedf908c158824c057c9b7c6 (diff) | |
download | cpython-2a6145290be7aec586c170ce7e405fb3813f39fd.zip cpython-2a6145290be7aec586c170ce7e405fb3813f39fd.tar.gz cpython-2a6145290be7aec586c170ce7e405fb3813f39fd.tar.bz2 |
Removed spaces before commas and periods.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/pyporting.rst | 2 | ||||
-rw-r--r-- | Doc/howto/urllib2.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index 9015372..92207e2 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -640,7 +640,7 @@ developing under Python 2 or Python 3. Whether this approach or using To get a complete idea of what issues you will need to deal with, see the `What's New in Python 3.0`_. Others have reorganized the data in other formats -such as http://docs.pythonsprints.com/python3_porting/py-porting.html . +such as http://docs.pythonsprints.com/python3_porting/py-porting.html\ . The following are some steps to take to try to support both Python 2 & 3 from the same source code. diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst index 7b217ea..f9fde14 100644 --- a/Doc/howto/urllib2.rst +++ b/Doc/howto/urllib2.rst @@ -160,7 +160,7 @@ We'll discuss here one particular HTTP header, to illustrate how to add headers to your HTTP request. Some websites [#]_ dislike being browsed by programs, or send different versions -to different browsers [#]_ . By default urllib identifies itself as +to different browsers [#]_. By default urllib identifies itself as ``Python-urllib/x.y`` (where ``x`` and ``y`` are the major and minor version numbers of the Python release, e.g. ``Python-urllib/2.5``), which may confuse the site, or just plain |