Searched refs:TextCalendar (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_calendar.py | 403 calendar.TextCalendar().formatyear(2004), 407 calendar.TextCalendar().formatyear(0), 438 calendar.TextCalendar().formatweekheader(2), 444 calendar.TextCalendar().formatweekheader(9), 451 calendar.TextCalendar().formatmonth(2004, 1), 455 calendar.TextCalendar().formatmonth(0, 2), 474 calendar.TextCalendar().prweek(week, 1) 479 calendar.TextCalendar().prmonth(2004, 1) 484 calendar.TextCalendar().pryear(2004) 547 old_october = calendar.TextCalendar().formatmonthname(2010, 10, 10) [all …]
|
/external/python/cpython2/Lib/ |
D | calendar.py | 260 class TextCalendar(Calendar): class 502 class LocaleTextCalendar(TextCalendar): 511 TextCalendar.__init__(self, firstweekday) 568 c = TextCalendar() 694 cal = TextCalendar()
|
/external/python/cpython3/Lib/ |
D | calendar.py | 293 class TextCalendar(Calendar): class 558 class LocaleTextCalendar(TextCalendar): 567 TextCalendar.__init__(self, firstweekday) 616 c = TextCalendar() 751 cal = TextCalendar()
|
/external/python/cpython2/Lib/test/ |
D | test_calendar.py | 205 calendar.TextCalendar().formatyear(2004).strip(), 267 old_october = calendar.TextCalendar().formatmonthname(2010, 10, 10) 286 new_october = calendar.TextCalendar().formatmonthname(2010, 10, 10)
|
/external/python/cpython2/Doc/library/ |
D | calendar.rst | 111 .. class:: TextCalendar([firstweekday]) 117 :class:`TextCalendar` instances have the following methods: 182 This subclass of :class:`TextCalendar` can be passed a locale name in the 277 of the :class:`TextCalendar` class. 290 :meth:`formatyear` of the :class:`TextCalendar` class.
|
/external/python/cpython3/Doc/library/ |
D | calendar.rst | 135 .. class:: TextCalendar(firstweekday=0) 139 :class:`TextCalendar` instances have the following methods: 280 This subclass of :class:`TextCalendar` can be passed a locale name in the 364 of the :class:`TextCalendar` class. 375 the :meth:`formatyear` of the :class:`TextCalendar` class.
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | ttkcalendar.py | 13 return calendar.TextCalendar(fwday)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b3.rst | 136 calendar.TextCalendar().prmonth() no longer prints a space at the start of
|
D | 3.5.3rc1.rst | 637 calendar.TextCalendar().prmonth() no longer prints a space at the start of
|
D | 3.7.0a1.rst | 4035 calendar.TextCalendar.prweek() no longer prints a space after a weeks's 4036 calendar. calendar.TextCalendar.pryear() no longer prints redundant newline 4046 calendar.TextCalendar.prmonth() no longer prints a space at the start of new
|