This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typo in liblocale.tex
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: nnorwitz, quiver
Priority: normal Keywords: patch

Created on 2004-10-15 05:51 by quiver, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
liblocale.diff quiver, 2004-10-15 05:51 patch against CVS HEAD
liblocale23.diff quiver, 2004-10-15 05:54 patch against release23-maint
Messages (2)
msg47077 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2004-10-15 05:51
Quote from the example of locale library.
 6.26 locale -- Internationalization services
 http://docs.python.org/lib/module-locale.html

>>> loc = locale.setlocale(locale.LC_ALL) # get current 
locale
>>> locale.setlocale(locale.LC_ALL, 'de_DE') # ...

The first line should read  ::

>>> loc = locale.getlocale(locale.LC_ALL) # get current 
locale

I mean, s/set/get.
msg47078 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2004-10-17 16:46
Logged In: YES 
user_id=33168

Checked in as:
 * Doc/lib/liblocale.tex 1.39
 * Doc/lib/liblocale.tex 1.33.10.3

Thanks!
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41025
2004-10-15 05:51:36quivercreate