vContent

tests/test_calendar.py

77:a6c69e29fcbd
2017-10-22 Paul Boddie Reworked various aspects of the recurrence computation implementation, removing explicit sort operations and changing day selection to produce results in order.
     1 #!/usr/bin/env python     2      3 import codecs, vCalendar, os     4      5 this_dir = os.path.split(__file__)[0]     6 f = codecs.open(os.path.join(this_dir, "test.ics"), encoding="utf-8")     7 try:     8     doc = vCalendar.parse(f)     9 finally:    10     f.close()    11     12 # vim: tabstop=4 expandtab shiftwidth=4