summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/2.5.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-24 09:04:06 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-24 09:04:06 (GMT)
commitb712873a63fb0b0776d86dab5436ff8952eba02c (patch)
treec67bb711363f9e58dcc06bee95cf430b984dd03d /Doc/whatsnew/2.5.rst
parent610f84af0d810f4d43336ca4f8408d60655d5bf2 (diff)
downloadcpython-b712873a63fb0b0776d86dab5436ff8952eba02c.zip
cpython-b712873a63fb0b0776d86dab5436ff8952eba02c.tar.gz
cpython-b712873a63fb0b0776d86dab5436ff8952eba02c.tar.bz2
Removed spaces before colons and semicolons.
Diffstat (limited to 'Doc/whatsnew/2.5.rst')
-rw-r--r--Doc/whatsnew/2.5.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.5.rst b/Doc/whatsnew/2.5.rst
index e059cd5..c420a19 100644
--- a/Doc/whatsnew/2.5.rst
+++ b/Doc/whatsnew/2.5.rst
@@ -286,7 +286,7 @@ Python's standard :mod:`string` module? There's no clean way to ignore
:mod:`pkg.string` and look for the standard module; generally you had to look at
the contents of ``sys.modules``, which is slightly unclean. Holger Krekel's
:mod:`py.std` package provides a tidier way to perform imports from the standard
-library, ``import py ; py.std.string.join()``, but that package isn't available
+library, ``import py; py.std.string.join()``, but that package isn't available
on all Python installations.
Reading code which relies on relative imports is also less clear, because a