Home
last modified time | relevance | path

Searched refs:itermonthdates (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Doc/library/
Dcalendar.rst50 .. method:: itermonthdates(year, month)
61 :meth:`itermonthdates`, but not restricted by the :class:`datetime.date`
69 :meth:`itermonthdates`, but not restricted by the :class:`datetime.date`
77 :meth:`itermonthdates`, but not restricted by the :class:`datetime.date`
87 :meth:`itermonthdates`, but not restricted by the :class:`datetime.date`
/third_party/python/Lib/
Dcalendar.py173 def itermonthdates(self, year, month): member in Calendar
233 dates = list(self.itermonthdates(year, month))
/third_party/python/Misc/NEWS.d/
D3.6.0b2.rst393 don't call itermonthdates() which can cause datetime.date under/overflow.
D3.7.0a3.rst876 Calendar.itermonthdates() will now consistently raise an exception when a
D3.5.3rc1.rst755 don't call itermonthdates() which can cause datetime.date under/overflow.
D3.7.0a1.rst4386 don't call itermonthdates() which can cause datetime.date under/overflow.
/third_party/python/Doc/whatsnew/
D3.7.rst2418 * :meth:`Calendar.itermonthdates <calendar.Calendar.itermonthdates>`
/third_party/python/Misc/
DHISTORY5821 - Issue #15421: Fix an OverflowError in `Calendar.itermonthdates()` after