vContent

tests/test_calendar.py

81:7e316a669ac2
2017-10-24 Paul Boddie Added a method to expose the recurrence iterator. Fixed the materialise method's docstring, removing mentions of the count parameter.
     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