summaryrefslogtreecommitdiffstats
path: root/Doc/library/calendar.rst
diff options
context:
space:
mode:
authorHubert Badocha <badocha.hubert@gmail.com>2021-09-15 20:36:38 (GMT)
committerGitHub <noreply@github.com>2021-09-15 20:36:38 (GMT)
commita75a2577259a55d816de24a4cca16aad74e02aa5 (patch)
treed50a004a7554261877a038e71c07df4157c572df /Doc/library/calendar.rst
parent3814e2036d96e2b6c69afce61926bb0a2a34d2d9 (diff)
downloadcpython-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.rst5
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::