vContent

tests/test_calendar.py

50:5c163feb89b5
2014-10-06 Paul Boddie Reversed the frequency level ordering and ordered criteria by levels instead of tuple positions, thus accommodating weekly criteria explicitly.
     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