[Python-checkins] cpython (2.7): Remove Japanese datetime examples

david.wolever python-checkins at python.org
Mon Aug 12 21:51:27 CEST 2013


http://hg.python.org/cpython/rev/20a9ffdcfe5d
changeset:   85136:20a9ffdcfe5d
branch:      2.7
user:        David Wolever <david at wolever.net>
date:        Thu May 23 17:23:49 2013 -0400
summary:
  Remove Japanese datetime examples

files:
  Doc/library/datetime.rst |  36 +++++++++------------------
  1 files changed, 12 insertions(+), 24 deletions(-)


diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst
--- a/Doc/library/datetime.rst
+++ b/Doc/library/datetime.rst
@@ -1619,16 +1619,12 @@
 | ``%a``    | Weekday as locale's            || Sun, Mon, ..., Sat    | \(1)  |
 |           | abbreviated name.              |  (en_US);              |       |
 |           |                                || So, Mo, ..., Sa       |       |
-|           |                                |  (de_DE);              |       |
-|           |                                || 日, 月, ..., 土       |       |
-|           |                                |  (ja_JP)               |       |
+|           |                                |  (de_DE)               |       |
 +-----------+--------------------------------+------------------------+-------+
 | ``%A``    | Weekday as locale's full name. || Sunday, Monday, ...,  | \(1)  |
 |           |                                |  Saturday (en_US);     |       |
 |           |                                || Sonntag, Montag, ..., |       |
-|           |                                |  Samstag (de_DE);      |       |
-|           |                                || 日曜日, 月曜日, ...,  |       |
-|           |                                |  土曜日 (ja_JP)        |       |
+|           |                                |  Samstag (de_DE)       |       |
 +-----------+--------------------------------+------------------------+-------+
 | ``%w``    | Weekday as a decimal number,   | 0, 1, ..., 6           |       |
 |           | where 0 is Sunday and 6 is     |                        |       |
@@ -1640,15 +1636,12 @@
 | ``%b``    | Month as locale's abbreviated  || Jan, Feb, ..., Dec    | \(1)  |
 |           | name.                          |  (en_US);              |       |
 |           |                                || Jan, Feb, ..., Dez    |       |
-|           |                                |  (de_DE);              |       |
-|           |                                || 1, 2, ..., 12 (ja_JP) |       |
+|           |                                |  (de_DE)               |       |
 +-----------+--------------------------------+------------------------+-------+
 | ``%B``    | Month as locale's full name.   || January, February,    | \(1)  |
 |           |                                |  ..., December (en_US);|       |
 |           |                                || Januar, Februar, ..., |       |
-|           |                                |  Dezember (de_DE);     |       |
-|           |                                || 1月, 2月, ..., 12月   |       |
-|           |                                |  (ja_JP)               |       |
+|           |                                |  Dezember (de_DE)      |       |
 +-----------+--------------------------------+------------------------+-------+
 | ``%m``    | Month as a zero-padded         | 01, 02, ..., 12        |       |
 |           | decimal number.                |                        |       |
@@ -1666,8 +1659,7 @@
 |           | zero-padded decimal number.    |                        |       |
 +-----------+--------------------------------+------------------------+-------+
 | ``%p``    | Locale's equivalent of either  || AM, PM (en_US);       | \(1), |
-|           | AM or PM.                      || am, pm (de_DE);       | \(2)  |
-|           |                                || AM, PM (ja_JP)        |       |
+|           | AM or PM.                      || am, pm (de_DE)        | \(2)  |
 +-----------+--------------------------------+------------------------+-------+
 | ``%M``    | Minute as a zero-padded        | 00, 01, ..., 59        |       |
 |           | decimal number.                |                        |       |
@@ -1706,20 +1698,16 @@
 |           | week 0.                        |                        |       |
 +-----------+--------------------------------+------------------------+-------+
 | ``%c``    | Locale's appropriate date and  || Tue Aug 16 21:30:00   | \(1)  |
-|           | time representation.           |  1988 (en_US),         |       |
+|           | time representation.           |  1988 (en_US);         |       |
 |           |                                || Di 16 Aug 21:30:00    |       |
-|           |                                |  1988 (de_DE),         |       |
-|           |                                || 火  8/16 21:30:00     |       |
-|           |                                |  1988 (ja_JP)          |       |
+|           |                                |  1988 (de_DE)          |       |
 +-----------+--------------------------------+------------------------+-------+
-| ``%x``    | Locale's appropriate date      || 08/16/88 (None),      | \(1)  |
-|           | representation.                || 08/16/1988 (en_US),   |       |
-|           |                                || 16.08.1988 (de_DE),   |       |
-|           |                                || 1988/08/16 (ja_JP)    |       |
+| ``%x``    | Locale's appropriate date      || 08/16/88 (None);      | \(1)  |
+|           | representation.                || 08/16/1988 (en_US);   |       |
+|           |                                || 16.08.1988 (de_DE)    |       |
 +-----------+--------------------------------+------------------------+-------+
-| ``%X``    | Locale's appropriate time      || 21:30:00 (en_US),     | \(1)  |
-|           | representation.                || 21:30:00 (de_DE),     |       |
-|           |                                || 21時30分00秒 (ja_JP)  |       |
+| ``%X``    | Locale's appropriate time      || 21:30:00 (en_US);     | \(1)  |
+|           | representation.                || 21:30:00 (de_DE)      |       |
 +-----------+--------------------------------+------------------------+-------+
 | ``%%``    | A literal ``'%'`` character.   | %                      |       |
 +-----------+--------------------------------+------------------------+-------+

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list