Python calendar.SUNDAY Examples
The following are 14
code examples of calendar.SUNDAY().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
calendar
, or try the search function
.
Example #1
Source File: test_calendar.py From oss-ftp with MIT License | 6 votes |
def test_setfirstweekday(self): self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #2
Source File: test_calendar.py From Fluid-Designer with GNU General Public License v3.0 | 6 votes |
def test_setfirstweekday(self): self.assertRaises(TypeError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #3
Source File: test_calendar.py From ironpython3 with Apache License 2.0 | 6 votes |
def test_setfirstweekday(self): self.assertRaises(TypeError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #4
Source File: test_calendar.py From gcblue with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_setfirstweekday(self): self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #5
Source File: test_calendar.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 6 votes |
def test_setfirstweekday(self): self.assertRaises(TypeError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #6
Source File: test_calendar.py From medicare-demo with Apache License 2.0 | 6 votes |
def test_setfirstweekday(self): self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #7
Source File: test_calendar.py From CTFCrackTools-V2 with GNU General Public License v3.0 | 6 votes |
def test_setfirstweekday(self): self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #8
Source File: misc.py From pyconjpbot with MIT License | 5 votes |
def cal_command(message, month=None, year=None): """ 一ヶ月のカレンダーを返す """ today = date.today() month = int(month) if month else today.month year = int(year) if year else today.year cal = calendar.TextCalendar(firstweekday=calendar.SUNDAY) try: botsend(message, '```{}```'.format(cal.formatmonth(year, month))) except IndexError: # 数字が範囲外の場合は無視する pass
Example #9
Source File: test_calendar.py From ironpython2 with Apache License 2.0 | 5 votes |
def test_setfirstweekday(self): self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #10
Source File: test_calendar.py From BinderFilter with MIT License | 5 votes |
def test_setfirstweekday(self): self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)
Example #11
Source File: test_calendar.py From ttkwidgets with GNU General Public License v3.0 | 5 votes |
def test_calendar_kw(self): widget = Calendar(self.window, firstweekday=calendar.SUNDAY, year=2016, month=12) widget.pack()
Example #12
Source File: chapter8_07.py From Tkinter-GUI-Application-Development-Cookbook with MIT License | 5 votes |
def main(): root = tk.Tk() root.title('Tkinter Calendar') ttkcal = TtkCalendar(firstweekday=calendar.SUNDAY) ttkcal.pack(expand=True, fill=tk.BOTH) root.mainloop()
Example #13
Source File: groups.py From tk_tools with MIT License | 5 votes |
def __init__(self, parent, callback: callable = None, **kwargs): # remove custom options from kw before initializing ttk.Frame fwday = calendar.SUNDAY year = kwargs.pop('year', self.datetime.now().year) month = kwargs.pop('month', self.datetime.now().month) locale = kwargs.pop('locale', None) sel_bg = kwargs.pop('selectbackground', '#ecffc4') sel_fg = kwargs.pop('selectforeground', '#05640e') self._date = self.datetime(year, month, 1) self._selection = None # no date selected self.callback = callback super().__init__(parent, **kwargs) self._cal = _get_calendar(locale, fwday) self.__setup_styles() # creates custom styles self.__place_widgets() # pack/grid used widgets self.__config_calendar() # adjust calendar columns and setup tags # configure a _canvas, and proper bindings, for selecting dates self.__setup_selection(sel_bg, sel_fg) # store items ids, used for insertion later self._items = [ self._calendar.insert('', 'end', values='') for _ in range(6) ] # insert dates in the currently empty calendar self._build_calendar()
Example #14
Source File: test_calendar.py From CTFCrackTools with GNU General Public License v3.0 | 5 votes |
def test_setfirstweekday(self): self.assertRaises(ValueError, calendar.setfirstweekday, 'flabber') self.assertRaises(ValueError, calendar.setfirstweekday, -1) self.assertRaises(ValueError, calendar.setfirstweekday, 200) orig = calendar.firstweekday() calendar.setfirstweekday(calendar.SUNDAY) self.assertEqual(calendar.firstweekday(), calendar.SUNDAY) calendar.setfirstweekday(calendar.MONDAY) self.assertEqual(calendar.firstweekday(), calendar.MONDAY) calendar.setfirstweekday(orig)