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.

Author terry.reedy
Recipients docs@python, eric.araujo, ezio.melotti, lemburg, loewis, nailor, petri.lehtinen, python-dev, skrah, terry.reedy, vincent.chute, vstinner
Date 2011-11-05.00:19:21
SpamBayes Score 2.1878845e-05
Marked as misclassified No
Message-id <1320452361.93.0.974665406954.issue3067@psf.upfronthosting.co.za>
In-reply-to
Content
Yes. I think in locale.rst (assuming that is the name)
'''
exception locale.Error 
Exception raised when setlocale() fails.

locale.setlocale(category, locale=None) 
If *locale* is specified, it may be a string, a tuple of the form (language code, encoding), or None. If it is a tuple, it is converted to a string using the locale aliasing engine.
'''
should be changed to
'''
exception locale.Error 
Exception raised when the locale passed to setlocale() is not recognized.

locale.setlocale(category, locale=None) 
If *locale* is specified, it may be a None, a string, or an iterable of two strings, language code and encoding. String pairs are converted to a single string using the locale aliasing engine.
'''
where language code and encoding are gray shaded as they are now.
History
Date User Action Args
2011-11-05 00:19:22terry.reedysetrecipients: + terry.reedy, lemburg, loewis, vstinner, ezio.melotti, eric.araujo, vincent.chute, skrah, docs@python, nailor, python-dev, petri.lehtinen
2011-11-05 00:19:21terry.reedysetmessageid: <1320452361.93.0.974665406954.issue3067@psf.upfronthosting.co.za>
2011-11-05 00:19:21terry.reedylinkissue3067 messages
2011-11-05 00:19:21terry.reedycreate