diff options
author | Hubert Badocha <badocha.hubert@gmail.com> | 2021-09-15 20:36:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 20:36:38 (GMT) |
commit | a75a2577259a55d816de24a4cca16aad74e02aa5 (patch) | |
tree | d50a004a7554261877a038e71c07df4157c572df /Doc/library/calendar.rst | |
parent | 3814e2036d96e2b6c69afce61926bb0a2a34d2d9 (diff) | |
download | cpython-a75a2577259a55d816de24a4cca16aad74e02aa5.zip cpython-a75a2577259a55d816de24a4cca16aad74e02aa5.tar.gz cpython-a75a2577259a55d816de24a4cca16aad74e02aa5.tar.bz2 |
bpo-39710: Remove Python 2-specific sentence from calendar documentation (GH-26985)
Diffstat (limited to 'Doc/library/calendar.rst')
-rw-r--r-- | Doc/library/calendar.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/library/calendar.rst b/Doc/library/calendar.rst index c3c04db..6050ff5 100644 --- a/Doc/library/calendar.rst +++ b/Doc/library/calendar.rst @@ -279,16 +279,13 @@ interpreted as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is This subclass of :class:`TextCalendar` can be passed a locale name in the constructor and will return month and weekday names in the specified locale. - If this locale includes an encoding all strings containing month and weekday - names will be returned as unicode. .. class:: LocaleHTMLCalendar(firstweekday=0, locale=None) This subclass of :class:`HTMLCalendar` can be passed a locale name in the constructor and will return month and weekday names in the specified - locale. If this locale includes an encoding all strings containing month and - weekday names will be returned as unicode. + locale. .. note:: |