diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 09:04:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 09:04:36 (GMT) |
commit | f47036c1309536c048890c265605b06daf7bdc9c (patch) | |
tree | e6df0e6a342b66183d5924c97667c14c42cb2ff7 /Doc/whatsnew/2.5.rst | |
parent | 55c6cc408c56f586c4826c1d9639a5f4635c021c (diff) | |
download | cpython-f47036c1309536c048890c265605b06daf7bdc9c.zip cpython-f47036c1309536c048890c265605b06daf7bdc9c.tar.gz cpython-f47036c1309536c048890c265605b06daf7bdc9c.tar.bz2 |
Removed spaces before colons and semicolons.
Diffstat (limited to 'Doc/whatsnew/2.5.rst')
-rw-r--r-- | Doc/whatsnew/2.5.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.5.rst b/Doc/whatsnew/2.5.rst index b91e647..683630a 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 |