Skip to content

Commit

Permalink
print content of example
Browse files Browse the repository at this point in the history
In order for the test in
https://github.com/collective/icalendar/blob/master/src/icalendar/tests/test_with_doctest.py
not to fail it was necessary to normilize the whitespace
  • Loading branch information
abe-101 committed Dec 20, 2022
1 parent dd2014e commit 4c998ed
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/usage.rst
Expand Up @@ -317,6 +317,26 @@ Write to disk::
522
>>> f.close()

Print out the calendar::

>>> print(cal.to_ical().decode("utf-8")) # doctest: +NORMALIZE_WHITESPACE
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//My calendar product//mxm.dk//
BEGIN:VEVENT
SUMMARY:Python meeting about calendaring
DTSTART:20050404T080000Z
DTEND:20050404T100000Z
DTSTAMP:20050404T001000Z
UID:20050115T101010/27346262376@mxm.dk
ATTENDEE;CN="Max Rasmussen";ROLE=REQ-PARTICIPANT:MAILTO:maxm@example.com
ATTENDEE;CN="The Dude";ROLE=REQ-PARTICIPANT:MAILTO:the-dude@example.com
LOCATION:Odense\, Denmark
ORGANIZER;CN="Max Rasmussen";ROLE=CHAIR:MAILTO:noone@example.com
PRIORITY:5
END:VEVENT
END:VCALENDAR
<BLANKLINE>

More documentation
==================
Expand Down

0 comments on commit 4c998ed

Please sign in to comment.