Author quiver
Recipients
Date 2004-10-15.05:51:36
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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.
History
Date User Action Args
2007-08-23 15:40:13adminlinkissue1047577 messages
2007-08-23 15:40:13admincreate