summaryrefslogtreecommitdiff
path: root/Doc/library/locale.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-03 21:18:54 +0000
committerGeorg Brandl <georg@python.org>2009-01-03 21:18:54 +0000
commite8e1ef2b43ba0bedf0069334f115a58afb126f0c (patch)
treeb9ed90945f6a0ef937f38967b2fed7d43efe8fe9 /Doc/library/locale.rst
parent5d20a71b2054bb1cdf5676414dfb6957ca844bff (diff)
downloadcpython-e8e1ef2b43ba0bedf0069334f115a58afb126f0c.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'Doc/library/locale.rst')
-rw-r--r--Doc/library/locale.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst
index 3dfa6664f8..381107e4c1 100644
--- a/Doc/library/locale.rst
+++ b/Doc/library/locale.rst
@@ -474,7 +474,7 @@ Example::
>>> import locale
>>> loc = locale.getlocale() # get current locale
>>> locale.setlocale(locale.LC_ALL, 'de_DE') # use German locale; name might vary with platform
- >>> locale.strcoll('f\xe4n', 'foo') # compare a string containing an umlaut
+ >>> locale.strcoll('f\xe4n', 'foo') # compare a string containing an umlaut
>>> locale.setlocale(locale.LC_ALL, '') # use user's preferred locale
>>> locale.setlocale(locale.LC_ALL, 'C') # use default (C) locale
>>> locale.setlocale(locale.LC_ALL, loc) # restore saved locale