Searched defs:firstweekday (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/ |
D | calendar.py | 132 def __init__(self, firstweekday=0): argument 138 def setfirstweekday(self, firstweekday): argument 141 firstweekday = property(getfirstweekday, setfirstweekday) variable in Calendar 510 def __init__(self, firstweekday=0, locale=None): argument 544 def __init__(self, firstweekday=0, locale=None): argument 570 firstweekday = c.getfirstweekday variable 572 def setfirstweekday(firstweekday): argument
|
/external/python/cpython3/Lib/ |
D | calendar.py | 154 def __init__(self, firstweekday=0): argument 160 def setfirstweekday(self, firstweekday): argument 163 firstweekday = property(getfirstweekday, setfirstweekday) variable in Calendar 566 def __init__(self, firstweekday=0, locale=None): argument 596 def __init__(self, firstweekday=0, locale=None): argument 618 firstweekday = c.getfirstweekday variable 620 def setfirstweekday(firstweekday): argument
|
/external/python/cpython2/Lib/test/ |
D | test_calendar.py | 332 firstweekday = calendar.MONDAY variable in MondayTestCase 390 firstweekday = calendar.SUNDAY variable in SundayTestCase
|
/external/python/cpython3/Lib/test/ |
D | test_calendar.py | 615 firstweekday = calendar.MONDAY variable in MondayTestCase 673 firstweekday = calendar.SUNDAY variable in SundayTestCase
|