diff options
author | Georg Brandl <georg@python.org> | 2013-10-29 07:05:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-29 07:05:10 (GMT) |
commit | ad3215362c60fdff0865e443a6d9946a3e9d3879 (patch) | |
tree | 18e705ea3b86859cce9611d299ecb7493d3a1f10 /Doc | |
parent | e90cedb71102c78b93839fd282f53c618defc023 (diff) | |
download | cpython-ad3215362c60fdff0865e443a6d9946a3e9d3879.zip cpython-ad3215362c60fdff0865e443a6d9946a3e9d3879.tar.gz cpython-ad3215362c60fdff0865e443a6d9946a3e9d3879.tar.bz2 |
Fix typo: js_JP is not a valid locale.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/datetime.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 6ca15b7..065e850 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1896,7 +1896,7 @@ Notes: making assumptions about the output value. Field orderings will vary (for example, "month/day/year" versus "day/month/year"), and the output may contain Unicode characters encoded using the locale's default encoding (for - example, if the current locale is ``js_JP``, the default encoding could be + example, if the current locale is ``ja_JP``, the default encoding could be any one of ``eucJP``, ``SJIS``, or ``utf-8``; use :meth:`locale.getlocale` to determine the current locale's encoding). |