Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python313-icalendar-7.0.3-1.1 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python313-icalendar Distribution: openSUSE Tumbleweed
Version: 7.0.3 Vendor: openSUSE
Release: 1.1 Build date: Wed Apr 1 19:05:22 2026
Group: Unspecified Build host: reproducible
Size: 3627881 Source RPM: python-icalendar-7.0.3-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/collective/icalendar
Summary: Python parser/generator of iCalendar files package
The iCalendar package is a parser/generator of iCalendar files for use
with Python. It follows the RFC 2445 (iCalendar) specification.

Provides

Requires

License

BSD-2-Clause

Changelog

* Wed Apr 01 2026 Dirk Müller <dmueller@suse.com>
  - update to 7.0.3:
    * Added Event.RECURRENCE_ID, Todo.RECURRENCE_ID, and
      Journal.RECURRENCE_ID properties, including support in their
      new() constructors. #1231
    * Enabled Calendar.from_ical to read calendars from files. #756
    * Added Calendar.journals property to retrieve all journal
      components. #1230
    * Setting calendar_name now also writes X-WR-CALNAME, and
      setting description now also writes X-WR-CALDESC, for
      improved client compatibility. #918
    * Drop support for Python 3.8 and 3.9. #977
    * DURATION_REGEX moved from icalendar.prop to
      icalendar.prop.dt.duration. #987
    * WEEKDAY_RULE moved from icalendar.prop to
      icalendar.prop.recur.weekday. #987
    * Removed tzid_from_dt and tzid_from_tzinfo from icalendar.prop
      as they exist in icalendar.timezone. #987
    * Component.decoded() now returns a string instead of bytes
      for text properties.
    * Remove constants FOLD, NAME, NEWLINE, QUNSAFE_CHAR, QUOTABLE,
      UFOLD, and UNSAFE_CHAR from icalendar.parser's export. #987
* Tue Nov 11 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Update to 6.3.2
    * Add PyData Theme version switcher to documentation. See Issue 825.
* Wed Jul 02 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 6.3.1:
    * New features:
      + Add ``VALARM`` properties for :rfc:`9074`.
      + Test compatibility with Python 3.13
      + Add ``Timezone.from_tzinfo()`` and ``Timezone.from_tzid()`` to create
      a ``Timezone`` component from a ``datetime.tzinfo`` timezone.
      + Add ``icalendar.prop.tzid_from_tzinfo``.
      + Add ``icalendar.alarms`` module to calculate alarm times.
      + Add ``Event.alarms`` and ``Todo.alarms`` to access alarm calculation.
      + Add ``DTSTART``, ``TZOFFSETTO``, and ``TZOFFSETFROM`` to
      ``TimezoneStandard`` and ``TimezoneDaylight``
      + Use ``pyproject.toml`` file instead of ``setup.py``
    * Breaking changes:
      + The ``relative`` attribute of ``vWeekday`` components has the correct sign now.
      + Use ``zoneinfo`` for ``icalendar`` objects created from strings,
      + Remove ``is_broken`` property. Use ``errors`` instead to check if a
      component had suppressed parsing errors.
      + Remove untested and broken ``LocalTimezone`` and ``FixedOffset`` tzinfo
      + sub-classes.
      + Remove Python 3.7 as compatible.
      + Test compatibility with Python 3.12
      + Add function ``icalendar.use_pytz()``.
      + Allows selecting components with ``walk(select=func)`` where ``func`` takes a
      component and returns ``True`` or ``False``.
      + Add compatibility to :rfc:`7529`, adding ``vMonth`` and ``vSkip``
    * Bug fixes:
      + Fix a bad ``bytes`` replace in ``unescape_char``.
      + Handle ``ValueError`` in ``vBinary.from_ical``.
      + Rename RFC 2445 to RFC 5545, see `Issue 278
* Sun Jun 30 2024 Dirk Müller <dmueller@suse.com>
  - update to 5.0.13:
    * Guide to delete the build folder before running tests
    * Make documentation build with Python 3.12
    * Update windows to olson conversion for Greenland Standard
      Time
    * Extend examples in Usage with alarm and recurrence
    * Document how to serve the built documentation to view with
      the browser
    * Improve test coverage
* Fri Mar 22 2024 Dirk Müller <dmueller@suse.com>
  - update to 5.0.12:
    * Augmented fuzzer to optionally convert multiple calendars
      from a source string
    * Add script to convert OSS FUZZ test cases to Python/pytest
      test cases
    * Added additional exception handling of defined errors to
      fuzzer, to allow fuzzer to explore deeper
    * Added more instrumentation to fuzz-harness
    * Rename "contributor" to "collaborator" in documentation
    * Correct the outdated "icalendar view myfile.ics" command in
      documentation. #588
    * Update GitHub Actions steps versions
    * Keep GitHub Actions up to date with GitHub's Dependabot
    * Fixed index error in cal.py when attempting to pop from an
      empty stack
    * Fixed type error in prop.py when attempting to join strings
      into a byte-string
    * Caught Wrong Date Format in ical_fuzzer to resolve fuzzing
      coverage blocker
* Sat Jan 20 2024 Dirk Müller <dmueller@suse.com>
  - skip tests on leap
* Sun Dec 17 2023 Dirk Müller <dmueller@suse.com>
  - update to 5.0.11:
    * The cli utility now displays start and end datetimes in the
      user's local timezone.
    * Added fuzzing harnesses, for integration to OSSFuzz.
    * icalendar releases are deployed to Github releases
    * CATEGORIES field now accepts a string as argument
    * Multivalue FREEBUSY property is now parsed properly
    * Compare equality and inequality of calendars more completely
    * Use non legacy timezone name.
    * Add some compare functions.
    * Change OSS Fuzz build script to point to harnesses in fuzzing
      directory
    * Component._encode stops ignoring parameters argument on
      native values, now merges them
    * PERIOD values now set the timezone of their start and end.
    * No longer run the ``plone.app.event`` tests.
    * Add documentation on how to parse ``.ics`` files. #152
    * Move pip caching into Python setup action.
    * Check that issue #165 can be closed.
    * Updated about.rst for issue #527
    * Avoid ``vText.__repr__`` BytesWarning.
    * Calendar components are now properly compared
    * to_ical() now accepts RRULE BYDAY values>=10 #518
    * Adjusted duration regex
    * Added support for BYWEEKDAY in vRecur ref: #268
    * Fix problem with ORGANIZER in FREE/BUSY #348
    * vDDDTypes is hashable #487 #492 [niccokunzmann]
    * Minor changes:
    * Refactored cal.py, tools.py and completed remaining minimal
      refactoring in parser.py. Ref: #481 [pronoym99]
    * fixed setuptools deprecation warnings [mgorny]
    * removed deprecated test checks [tuergeist]
    * Fix: cli does not support DURATION #354 [mamico]
    * Add changelog and contributing to readthedocs documentation
      [#428] [peleccom]
    * fixed small typos #323 [rohnsha0]
    * unittest to parametrized pytest refactoring [jacadzaca]
    * Require Python 3.7 as minimum Python version.  [maurits]
    * icalendar now takes a ics file directly as an input
    * icalendar utility outputs a 'Duration' row
    * icalendar can take multiple ics files as an input
    * Changed tools.UIDGenerator instance methods to static methods
    * proper handling of datetime objects with `tzinfo` generated
      through zoneinfo.ZoneInfo.
    * Timestamps in UTC does not need tzid
    * add ``__eq__`` to ``icalendar.prop.vDDDTypes`` #391
    * Refactor deprecated unittest aliases for Python 3.11
      compatibility #330 [tirkarthi]
    * Drop support for Python 3.4, 3.5 and PyPy2.  [maurits]
* Mon Sep 26 2022 Dirk Müller <dmueller@suse.com>
  - update to 4.1.0:
    - No longer test on Python 3.4, 3.5 and PyPy2, because we cannot get it to work.
      Technically it should still work, it is just no longer tested.
      Do not expect much development on branch 4.x anymore.
      The master branch will be for the remaining Python versions that we support.
* Tue Oct 26 2021 Dirk Müller <dmueller@suse.com>
  - update to 4.0.9:
    - Fix vCategories for correct en/de coding.
    - vDuration property value: Fix changing duration sign after multiple
      ``to_ical`` calls.
* Sat Oct 16 2021 Dirk Müller <dmueller@suse.com>
  - update to 4.0.8:
    - Support added for Python 3.9 and 3.10 (no code changes needed).
    - Replace bare 'except:' with 'except Exception:' (#281)

Files

/etc/alternatives/icalendar
/usr/bin/icalendar
/usr/bin/icalendar-3.13
/usr/lib/python3.13/site-packages/icalendar
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/METADATA
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/RECORD
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/WHEEL
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/entry_points.txt
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/licenses
/usr/lib/python3.13/site-packages/icalendar-7.0.3.dist-info/licenses/LICENSE.rst
/usr/lib/python3.13/site-packages/icalendar/__init__.py
/usr/lib/python3.13/site-packages/icalendar/__pycache__
/usr/lib/python3.13/site-packages/icalendar/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/_version.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/_version.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/alarms.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/alarms.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/attr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/attr.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/caselessdict.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/caselessdict.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/cli.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/cli.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/compatibility.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/compatibility.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/enums.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/enums.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/error.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/error.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/param.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/param.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/parser_tools.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/parser_tools.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/tools.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/tools.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/version.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/__pycache__/version.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/_version.py
/usr/lib/python3.13/site-packages/icalendar/alarms.py
/usr/lib/python3.13/site-packages/icalendar/attr.py
/usr/lib/python3.13/site-packages/icalendar/cal
/usr/lib/python3.13/site-packages/icalendar/cal/__init__.py
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/alarm.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/alarm.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/availability.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/availability.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/available.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/available.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/calendar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/calendar.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/component.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/component.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/component_factory.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/component_factory.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/event.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/event.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/examples.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/examples.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/free_busy.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/free_busy.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/journal.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/journal.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/timezone.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/timezone.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/todo.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/__pycache__/todo.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/cal/alarm.py
/usr/lib/python3.13/site-packages/icalendar/cal/availability.py
/usr/lib/python3.13/site-packages/icalendar/cal/available.py
/usr/lib/python3.13/site-packages/icalendar/cal/calendar.py
/usr/lib/python3.13/site-packages/icalendar/cal/component.py
/usr/lib/python3.13/site-packages/icalendar/cal/component_factory.py
/usr/lib/python3.13/site-packages/icalendar/cal/event.py
/usr/lib/python3.13/site-packages/icalendar/cal/examples.py
/usr/lib/python3.13/site-packages/icalendar/cal/free_busy.py
/usr/lib/python3.13/site-packages/icalendar/cal/journal.py
/usr/lib/python3.13/site-packages/icalendar/cal/timezone.py
/usr/lib/python3.13/site-packages/icalendar/cal/todo.py
/usr/lib/python3.13/site-packages/icalendar/caselessdict.py
/usr/lib/python3.13/site-packages/icalendar/cli.py
/usr/lib/python3.13/site-packages/icalendar/compatibility.py
/usr/lib/python3.13/site-packages/icalendar/enums.py
/usr/lib/python3.13/site-packages/icalendar/error.py
/usr/lib/python3.13/site-packages/icalendar/param.py
/usr/lib/python3.13/site-packages/icalendar/parser
/usr/lib/python3.13/site-packages/icalendar/parser/__init__.py
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/content_line.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/content_line.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/parameter.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/parameter.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/property.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/property.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/string.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/__pycache__/string.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/parser/content_line.py
/usr/lib/python3.13/site-packages/icalendar/parser/parameter.py
/usr/lib/python3.13/site-packages/icalendar/parser/property.py
/usr/lib/python3.13/site-packages/icalendar/parser/string.py
/usr/lib/python3.13/site-packages/icalendar/parser_tools.py
/usr/lib/python3.13/site-packages/icalendar/prop
/usr/lib/python3.13/site-packages/icalendar/prop/__init__.py
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/adr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/adr.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/binary.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/binary.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/boolean.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/boolean.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/broken.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/broken.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/cal_address.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/cal_address.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/categories.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/categories.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/conference.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/conference.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/factory.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/factory.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/float.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/float.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/geo.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/geo.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/image.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/image.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/inline.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/inline.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/integer.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/integer.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/n.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/n.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/org.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/org.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/text.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/text.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/uid.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/uid.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/unknown.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/unknown.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/uri.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/uri.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/xml_reference.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/__pycache__/xml_reference.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/adr.py
/usr/lib/python3.13/site-packages/icalendar/prop/binary.py
/usr/lib/python3.13/site-packages/icalendar/prop/boolean.py
/usr/lib/python3.13/site-packages/icalendar/prop/broken.py
/usr/lib/python3.13/site-packages/icalendar/prop/cal_address.py
/usr/lib/python3.13/site-packages/icalendar/prop/categories.py
/usr/lib/python3.13/site-packages/icalendar/prop/conference.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__init__.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/base.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/base.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/date.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/date.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/datetime.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/datetime.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/duration.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/duration.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/list.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/list.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/period.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/period.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/time.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/time.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/types.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/types.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/utc_offset.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/__pycache__/utc_offset.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/dt/base.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/date.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/datetime.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/duration.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/list.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/period.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/time.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/types.py
/usr/lib/python3.13/site-packages/icalendar/prop/dt/utc_offset.py
/usr/lib/python3.13/site-packages/icalendar/prop/factory.py
/usr/lib/python3.13/site-packages/icalendar/prop/float.py
/usr/lib/python3.13/site-packages/icalendar/prop/geo.py
/usr/lib/python3.13/site-packages/icalendar/prop/image.py
/usr/lib/python3.13/site-packages/icalendar/prop/inline.py
/usr/lib/python3.13/site-packages/icalendar/prop/integer.py
/usr/lib/python3.13/site-packages/icalendar/prop/n.py
/usr/lib/python3.13/site-packages/icalendar/prop/org.py
/usr/lib/python3.13/site-packages/icalendar/prop/recur
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__init__.py
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/frequency.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/frequency.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/month.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/month.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/recur.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/recur.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/skip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/skip.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/weekday.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/__pycache__/weekday.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/prop/recur/frequency.py
/usr/lib/python3.13/site-packages/icalendar/prop/recur/month.py
/usr/lib/python3.13/site-packages/icalendar/prop/recur/recur.py
/usr/lib/python3.13/site-packages/icalendar/prop/recur/skip.py
/usr/lib/python3.13/site-packages/icalendar/prop/recur/weekday.py
/usr/lib/python3.13/site-packages/icalendar/prop/text.py
/usr/lib/python3.13/site-packages/icalendar/prop/uid.py
/usr/lib/python3.13/site-packages/icalendar/prop/unknown.py
/usr/lib/python3.13/site-packages/icalendar/prop/uri.py
/usr/lib/python3.13/site-packages/icalendar/prop/xml_reference.py
/usr/lib/python3.13/site-packages/icalendar/py.typed
/usr/lib/python3.13/site-packages/icalendar/tests
/usr/lib/python3.13/site-packages/icalendar/tests/__init__.py
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/conftest.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/conftest.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/data.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/data.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_bom_calendar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_bom_calendar.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_cli_tool.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_cli_tool.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_component_register.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_component_register.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_components_break_on_bad_ics.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_components_break_on_bad_ics.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_consolidation_attr_functions.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_consolidation_attr_functions.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_custom_components.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_custom_components.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_encoding.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_encoding.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_enums.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_enums.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_equality.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_equality.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_error_tolerant_parsing.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_error_tolerant_parsing.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_examples.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_examples.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_funding_json.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_funding_json.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_icalendar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_icalendar.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_image.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_image.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1066_calendar_uid.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1066_calendar_uid.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1073_pyodide_import.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1073_pyodide_import.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1124_no_utc_vtimezone.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1124_no_utc_vtimezone.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1129.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1129.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_116.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_116.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1231.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_1231.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_127_categories_comma_escaping.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_127_categories_comma_escaping.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_165_missing_event.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_165_missing_event.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_168_parsing_invalid_calendars_no_warning.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_168_parsing_invalid_calendars_no_warning.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_187_type_and_value_do_not_match.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_187_type_and_value_do_not_match.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_218_parse_calendar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_218_parse_calendar.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_279_decoding_categories.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_279_decoding_categories.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_27_period.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_27_period.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_301_add_rrule_as_string.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_301_add_rrule_as_string.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_315_uid_required.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_315_uid_required.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_318_skip_default_parameters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_318_skip_default_parameters.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_321_dst_offset.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_321_dst_offset.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_322_single_strings_characters_split_into_multiple_categories.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_322_single_strings_characters_split_into_multiple_categories.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_336_dateutil_timezone.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_336_dateutil_timezone.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_348_exception_parsing_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_348_exception_parsing_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_349_value_parameter.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_349_value_parameter.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_350.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_350.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_355_url_escaping.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_355_url_escaping.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_500_vboolean_for_parameter.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_500_vboolean_for_parameter.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_557_encode_native_parameters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_557_encode_native_parameters.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_596_calendar_with_attributes.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_596_calendar_with_attributes.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_662_component_properties.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_662_component_properties.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_716_alarm_time_computation.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_716_alarm_time_computation.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_720_uid_property.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_720_uid_property.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_722_generate_vtimezone.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_722_generate_vtimezone.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_756_read_calendar_from_file.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_756_read_calendar_from_file.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_798_property_parameters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_798_property_parameters.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_802.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_802.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_821_stdin_parse.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_821_stdin_parse.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_828.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_828.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_836_do_not_quote_tzid.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_836_do_not_quote_tzid.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_843_new_method_for_components.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_843_new_method_for_components.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_844_timezone_placement.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_844_timezone_placement.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_857_enhanced_api.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_857_enhanced_api.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_860_improved_setters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_860_improved_setters.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_864_examples.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_864_examples.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_867_todo_duration_fix.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_867_todo_duration_fix.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_870_vcaladdress_new.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_870_vcaladdress_new.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_898_todo_end.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_898_todo_end.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_899_copy_component.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_899_copy_component.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_950.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_950.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_987.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_issue_987.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_multiple.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_multiple.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_oss_fuzz_errors.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_oss_fuzz_errors.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_parameter_access.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_parameter_access.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_parsing.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_parsing.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_period.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_period.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_property_params.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_property_params.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_pytz_zoneinfo_integration.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_pytz_zoneinfo_integration.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_recurrence.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_recurrence.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_6868.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_6868.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7529.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7529.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7953.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7953.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7986.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7986.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7986_categories.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_7986_categories.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_9074.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_rfc_9074.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_time.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_time.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_timezone_identification.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_timezone_identification.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_timezoned.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_timezoned.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_type_hints.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_type_hints.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_unit_cal.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_unit_cal.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_unit_caselessdict.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_unit_caselessdict.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_unit_parser_tools.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_unit_parser_tools.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_with_doctest.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/test_with_doctest.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/timezone_ids.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/__pycache__/timezone_ids.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/alarms
/usr/lib/python3.13/site-packages/icalendar/tests/alarms/example.ics
/usr/lib/python3.13/site-packages/icalendar/tests/alarms/rfc_5545_absolute_alarm_example.ics
/usr/lib/python3.13/site-packages/icalendar/tests/alarms/rfc_5545_end.ics
/usr/lib/python3.13/site-packages/icalendar/tests/alarms/start_date.ics
/usr/lib/python3.13/site-packages/icalendar/tests/attr
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__init__.py
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_alarm.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_alarm.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_component.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_component.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_exdates.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_exdates.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_rdate.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_rdate.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_rrule.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/__pycache__/test_rrule.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/attr/test_alarm.py
/usr/lib/python3.13/site-packages/icalendar/tests/attr/test_component.py
/usr/lib/python3.13/site-packages/icalendar/tests/attr/test_exdates.py
/usr/lib/python3.13/site-packages/icalendar/tests/attr/test_rdate.py
/usr/lib/python3.13/site-packages/icalendar/tests/attr/test_rrule.py
/usr/lib/python3.13/site-packages/icalendar/tests/availabilities
/usr/lib/python3.13/site-packages/icalendar/tests/availabilities/rfc_7953_1.ics
/usr/lib/python3.13/site-packages/icalendar/tests/availabilities/rfc_7953_2.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_etar_future.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_etar_notification.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_etar_notification_clicked.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_google_acknowledged.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_google_future.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_2_future.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_2_notification_5_min_postponed.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_2_notification_5_min_postponed_and_closed.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_2_notification_5_min_postponed_and_popped_up.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_2_notification_popped_up.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_closed.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_future.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/alarm_thunderbird_snoozed_until_1457.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/america_new_york.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/america_new_york_forward_reference.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/big_bad_calendar.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/bom_calendar.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/broken_dtstart.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/broken_ical.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/calendar_with_unicode.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/created_calendar_with_unicode_fields.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/empty_RDATE.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/example.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/fuzz_testcase_0_char_in_component_name.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/fuzz_testcase_invalid_month.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_104_broken_calendar.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_1231_recurrence.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_127_categories_with_commas.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_156_RDATE_with_PERIOD_TZID_khal.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_156_RDATE_with_PERIOD_TZID_khal_2.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_165_missing_event.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_168_expected_output.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_168_input.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_178_component_with_invalid_name_represented.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_178_custom_component_contains_other.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_178_custom_component_inside_other.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_218_bad_tzid.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_237_fail_to_parse_timezone_with_non_ascii_tzid.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_27_multiple_periods_in_freebusy_multiple_freebusies.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_27_multiple_periods_in_freebusy_one_freebusy.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_321_assert_dst_offset_is_not_false.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_322_expected_calendar.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_348_exception_parsing_value.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_350.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_466_convert_tzid_with_slash.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_466_respect_unique_timezone.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_526_calendar_with_different_events.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_526_calendar_with_event_subset.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_526_calendar_with_events.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_526_calendar_with_shuffeled_events.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_722_missing_VTIMEZONE_custom.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_722_missing_timezones.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_722_timezone_transition_ambiguity.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_798_freebusy.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_798_related_to.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_82_expected_output.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/issue_836_do_not_quote_tzid.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/multiple_calendar_components.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/pacific_fiji.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/parsing_error.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/parsing_error_in_UTC_offset.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/period_with_timezone.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/pr_480_summary_with_colon.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/property_params.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_5545_RDATE_example.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_6868.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7256_multi_value_parameters.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7265_appendix_example_1_ical.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7265_appendix_example_1_jcal.jcal
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7265_appendix_example_2_ical.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7265_appendix_example_2_jcal.jcal
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7265_example_1.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7265_example_2.jcal
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7265_example_3.jcal
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7529.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7953_3.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7986_conferences.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7986_image.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_7986_properties.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_9253_examples.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_9253_gap.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/rfc_9253_related_to.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/small_bad_calendar.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/time.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/timezone_rdate.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/timezone_same_start.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/timezone_same_start_and_offset.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/timezoned.ics
/usr/lib/python3.13/site-packages/icalendar/tests/calendars/x_location.ics
/usr/lib/python3.13/site-packages/icalendar/tests/conftest.py
/usr/lib/python3.13/site-packages/icalendar/tests/data.py
/usr/lib/python3.13/site-packages/icalendar/tests/events
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_escaped_character1.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_escaped_character2.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_escaped_character3.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_escaped_character4.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_escaped_characters.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_recurrence.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_recurrence_exdates_on_different_lines.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_rsvp.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_unicode_fields.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/event_with_unicode_organizer.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_100_transformed_doctests_into_unittests.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_101_icalendar_chokes_on_umlauts_in_organizer.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_104_mark_events_broken.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_112_missing_tzinfo_on_exdate.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_156_RDATE_with_PERIOD.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_156_RDATE_with_PERIOD_list.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_157_removes_trailing_semicolon.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_184_broken_representation_of_period.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_355_url_escaping.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_355_url_escaping_2.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_355_url_escaping_empty_param.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_464_invalid_rdate.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_53_description_parsed_properly.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_64_event_with_ascii_summary.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_64_event_with_non_ascii_summary.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_70_rrule_causes_attribute_error.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/issue_82_expected_output.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/rfc_7265_example_4.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/rfc_7265_request_status.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/rfc_9074_example_1.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/rfc_9074_example_2.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/rfc_9074_example_3.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/rfc_9074_example_4.ics
/usr/lib/python3.13/site-packages/icalendar/tests/events/rfc_9074_example_proximity.ics
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/__init__.py
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/__pycache__/test_fuzzed_calendars.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/__pycache__/test_fuzzed_calendars.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/generate_python_test_cases_from_downloaded_clusterfuzz_test_cases.sh
/usr/lib/python3.13/site-packages/icalendar/tests/fuzzed/test_fuzzed_calendars.py
/usr/lib/python3.13/site-packages/icalendar/tests/hypothesis
/usr/lib/python3.13/site-packages/icalendar/tests/hypothesis/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/hypothesis/__pycache__/test_fuzzing.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/hypothesis/__pycache__/test_fuzzing.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/hypothesis/test_fuzzing.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__init__.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_common_functionality.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_common_functionality.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_conference.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_conference.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_constructors.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_constructors.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_date_and_time.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_date_and_time.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_identity_and_equality.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_identity_and_equality.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_property_values.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_property_values.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_unit.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_unit.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vBinary.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vBinary.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vBoolean.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vBoolean.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vCalAddress.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vCalAddress.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vDDDTypes.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vDDDTypes.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vDatetime.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vDatetime.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vPeriod.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vPeriod.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vWeekday.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_vWeekday.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_windows_to_olson_mapping.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/__pycache__/test_windows_to_olson_mapping.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_common_functionality.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_conference.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_constructors.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_date_and_time.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_identity_and_equality.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_property_values.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_unit.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_vBinary.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_vBoolean.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_vCalAddress.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_vDDDTypes.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_vDatetime.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_vPeriod.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_vWeekday.py
/usr/lib/python3.13/site-packages/icalendar/tests/prop/test_windows_to_olson_mapping.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__init__.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_component_integration.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_component_integration.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_split_on_unescaped_semicolon.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_split_on_unescaped_semicolon.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_vAdr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_vAdr.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_vN.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_vN.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_vOrg.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/__pycache__/test_vOrg.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/test_component_integration.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/test_split_on_unescaped_semicolon.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/test_vAdr.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/test_vN.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_6350_vcard/test_vOrg.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__init__.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_additional_considerations.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_additional_considerations.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_categories.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_categories.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_examples.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_examples.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_invalid_jcal.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_invalid_jcal.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_3_components.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_3_components.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_4_properties.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_4_properties.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_5_parameters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_5_parameters.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_6_values.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_3_6_values.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_4_ical_parsing.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_4_ical_parsing.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_5_3_examples.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/__pycache__/test_section_5_3_examples.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_additional_considerations.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_categories.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_examples.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_invalid_jcal.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_section_3_3_components.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_section_3_4_properties.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_section_3_5_parameters.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_section_3_6_values.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_section_4_ical_parsing.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_7265_jcal/test_section_5_3_examples.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__init__.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_concept.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_concept.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_gap.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_gap.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_link.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_link.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_new_property_types.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_new_property_types.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_refid.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_refid.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_related_to.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/__pycache__/test_related_to.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/test_concept.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/test_gap.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/test_link.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/test_new_property_types.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/test_refid.py
/usr/lib/python3.13/site-packages/icalendar/tests/rfc_9253_icalendar_relationships/test_related_to.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_bom_calendar.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_cli_tool.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_component_register.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_components_break_on_bad_ics.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_consolidation_attr_functions.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_create_release.sh
/usr/lib/python3.13/site-packages/icalendar/tests/test_custom_components.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_encoding.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_enums.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_equality.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_error_tolerant_parsing.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_examples.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_funding_json.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_icalendar.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_image.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_1066_calendar_uid.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_1073_pyodide_import.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_1124_no_utc_vtimezone.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_1129.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_116.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_1231.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_127_categories_comma_escaping.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_165_missing_event.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_168_parsing_invalid_calendars_no_warning.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_187_type_and_value_do_not_match.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_218_parse_calendar.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_279_decoding_categories.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_27_period.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_301_add_rrule_as_string.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_315_uid_required.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_318_skip_default_parameters.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_321_dst_offset.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_322_single_strings_characters_split_into_multiple_categories.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_336_dateutil_timezone.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_348_exception_parsing_value.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_349_value_parameter.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_350.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_355_url_escaping.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_500_vboolean_for_parameter.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_557_encode_native_parameters.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_596_calendar_with_attributes.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_662_component_properties.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_716_alarm_time_computation.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_720_uid_property.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_722_generate_vtimezone.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_756_read_calendar_from_file.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_798_property_parameters.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_802.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_821_stdin_parse.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_828.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_836_do_not_quote_tzid.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_843_new_method_for_components.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_844_timezone_placement.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_857_enhanced_api.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_860_improved_setters.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_864_examples.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_867_todo_duration_fix.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_870_vcaladdress_new.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_898_todo_end.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_899_copy_component.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_950.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_issue_987.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_multiple.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_oss_fuzz_errors.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_parameter_access.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_parsing.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_period.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_property_params.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_pytz_zoneinfo_integration.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_recurrence.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_rfc_6868.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_rfc_7529.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_rfc_7953.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_rfc_7986.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_rfc_7986_categories.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_rfc_9074.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_time.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_timezone_identification.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_timezoned.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_type_hints.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_unit_cal.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_unit_caselessdict.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_unit_parser_tools.py
/usr/lib/python3.13/site-packages/icalendar/tests/test_with_doctest.py
/usr/lib/python3.13/site-packages/icalendar/tests/timezone_ids.py
/usr/lib/python3.13/site-packages/icalendar/tests/timezones
/usr/lib/python3.13/site-packages/icalendar/tests/timezones/issue_237_brazilia_standard.ics
/usr/lib/python3.13/site-packages/icalendar/tests/timezones/issue_53_tzid_parsed_properly.ics
/usr/lib/python3.13/site-packages/icalendar/tests/timezones/issue_55_parse_error_on_utc_offset_with_seconds.ics
/usr/lib/python3.13/site-packages/icalendar/tests/timezones/pacific_fiji.ics
/usr/lib/python3.13/site-packages/icalendar/tests/todos
/usr/lib/python3.13/site-packages/icalendar/tests/todos/example.ics
/usr/lib/python3.13/site-packages/icalendar/timezone
/usr/lib/python3.13/site-packages/icalendar/timezone/__init__.py
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/equivalent_timezone_ids.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/equivalent_timezone_ids.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/equivalent_timezone_ids_result.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/equivalent_timezone_ids_result.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/provider.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/provider.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/pytz.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/pytz.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/tzid.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/tzid.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/tzp.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/tzp.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/windows_to_olson.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/windows_to_olson.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/zoneinfo.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/__pycache__/zoneinfo.cpython-313.pyc
/usr/lib/python3.13/site-packages/icalendar/timezone/equivalent_timezone_ids.py
/usr/lib/python3.13/site-packages/icalendar/timezone/equivalent_timezone_ids_result.py
/usr/lib/python3.13/site-packages/icalendar/timezone/provider.py
/usr/lib/python3.13/site-packages/icalendar/timezone/pytz.py
/usr/lib/python3.13/site-packages/icalendar/timezone/tzid.py
/usr/lib/python3.13/site-packages/icalendar/timezone/tzp.py
/usr/lib/python3.13/site-packages/icalendar/timezone/windows_to_olson.py
/usr/lib/python3.13/site-packages/icalendar/timezone/zoneinfo.py
/usr/lib/python3.13/site-packages/icalendar/tools.py
/usr/lib/python3.13/site-packages/icalendar/version.py
/usr/share/doc/packages/python313-icalendar
/usr/share/doc/packages/python313-icalendar/README.rst
/usr/share/doc/packages/python313-icalendar/changelog.rst
/usr/share/licenses/python313-icalendar
/usr/share/licenses/python313-icalendar/LICENSE.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Apr 5 22:30:39 2026