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.

作者 terry.reedy
收信人 docs@python, eric.araujo, ezio.melotti, lemburg, loewis, nailor, petri.lehtinen, python-dev, skrah, terry.reedy, vincent.chute, vstinner
日期 2011-11-05.00:19:21
SpamBayes Score 2.1878845e-05
Marked as misclassified
Message-id <1320452361.93.0.974665406954.issue3067@psf.upfronthosting.co.za>
In-reply-to
内容
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.
历史
日期 用户 动作 参数
2011-11-05 00:19:22terry.reedy修改recipients: + 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.reedy修改messageid: <1320452361.93.0.974665406954.issue3067@psf.upfronthosting.co.za>
2011-11-05 00:19:21terry.reedy链接issue3067 messages
2011-11-05 00:19:21terry.reedy创建