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

python311-icalendar-5.0.11-bp156.1.2 RPM for noarch

From OpenSuSE Leap 15.6 for noarch

Name: python311-icalendar Distribution: SUSE Linux Enterprise 15 SP6
Version: 5.0.11 Vendor: openSUSE
Release: bp156.1.2 Build date: Fri Mar 22 16:01:46 2024
Group: Development/Languages/Python Build host: i04-ch1d
Size: 830494 Source RPM: python-icalendar-5.0.11-bp156.1.2.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

* 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)
* Thu Nov 26 2020 Dirk Mueller <dmueller@suse.com>
  - update to 4.0.7:
    - fixed rrule handling, re-enabled test_create_america_new_york
* Tue Jun 02 2020 Dirk Mueller <dmueller@suse.com>
  - update to 4.0.6:
    - Use ``vText`` as default type, when convert recurrence definition to ical string. [kam193]
* Mon May 25 2020 Petr Gajdos <pgajdos@suse.com>
  - %python3_only -> %python_alternative
* Thu Apr 09 2020 Marketa Calabkova <mcalabkova@suse.com>
  - update to 4.0.5
    * Fixed a docs issue related to building on Read the Docs
* Mon Mar 16 2020 Dirk Mueller <dmueller@suse.com>
  - update to 4.0.4:
    - Reduce Hypothesis iterations to speed up testing, allowing PRs to pass
* Wed Aug 21 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Fix fdupes and pytest calls
* Thu Mar 07 2019 John Vandenberg <jayvdb@gmail.com>
  - Remove no longer necessary pytest argument
    - k 'not test_create_america_new_york'
* Thu Nov 22 2018 Karol Babioch <kbabioch@suse.de>
  - Version update to 4.0.3
    * Categories are comma separated not 1 per line #265.
    * mark test with mixed timezoneaware and naive datetimes as an expected
      failure.
* Wed Aug 29 2018 tchvatal@suse.com
  - Explicitly require hypothesis as it is requested in setup.py
* Thu Aug 23 2018 tchvatal@suse.com
  - Version update to 4.0.2:
    * Update all pypi.python.org URLs to pypi.org
    * Added rudimentary command line interface.
    * Readme, setup and travis updates.
    * Drop support for Python 2.6 and 3.3.
    * Accept Windows timezone identifiers as valid. #242
    * Fix ResourceWarnings in setup.py when Python warnings are enabled. #244
    * Fix invalid escape sequences in string and bytes literals. #245
    * Include license file in the generated wheel package. #243
    * Fix non-ASCII TZID and TZNAME parameter handling. #238
    * Docs: update install instructions. #240
    * added vUTCOffset.ignore_exceptions to allow surpressing of failed TZOFFSET parsing (for now this ignores the check for offsets > 24h)
    * Fix VTIMEZONEs including RDATEs #234.
  - Update URL to point to the repo rather than to docs
  - Use %license for license install
* Tue Jul 04 2017 aloisio@gmx.com
  - Update to version 3.11.5
    * added an assertion that VTIMEZONE sub-components' DTSTART must
      be of type DATETIME [geier]
    * Fix handling of VTIMEZONEs with subcomponents with the same
      DTSTARTs and OFFSETs but which are of different types  [geier]
    3.11.4:
    * Don't break on parameter values which contain equal signs,
      e.g. base64 encoded binary data [geier]
    * Fix handling of VTIMEZONEs with subcomponents with the same
      DTSTARTs. [geier]
    3.11.3:
    * Removed ``setuptools`` as a dependency as it was only required
      by setup.py and not by the package.
    * Don't split content lines on the unicode ``LINE SEPARATOR``
      character ``\u2028`` but only on ``CRLF`` or ``LF``.
  - Converted to single-spec
* Wed Jan 18 2017 dmueller@suse.com
  - correct source url
* Sat Jan 14 2017 hpj@urpla.net
  - update to version 3.11.2 (2017-01-12)
    - Run tests with python 3.5 and 3.6. [geier]
    - Allow tests failing with pypy3 on travis.ci. [geier]
  - update to version 3.11.1 (2016-12-19)
    - Encode error message before adding it to the stack of collected error
      messages.
  - update to version 3.11 (2016-11-18)
    - Successfully test with pypy and pypy3. [gforcada]
    - Minor documentation update. [tpltnt]
  - update to version 3.10 (2016-05-26)
    - Updated components description to better comply with RFC 5545. Refs #183.
      [stlaz]
    - Added PERIOD value type to date types. Also fixes incompatibilities
      described in #184. Refs #189. [stlaz]
    - Fix testsuite for use with dateutil>=2.5. Refs #195. [untitaker]
    - Reintroduce cal.Component.is_broken that was removed with 3.9.2. Refs #185.
      [geier]
  - update to version 3.9.2 (2016-02-05)
    - Defined test_suite in setup.py. Now tests can be run via python setup.py
      test. [geier]
    - Fixed cal.Component.from_ical() representing an unknown component as one of
      the known. [stlaz]
    - Fixed possible IndexError exception during parsing of an ical string. [stlaz]
    - When doing a boolean test on icalendar.cal.Component, always return True.
      Before it was returning False due to CaselessDict, if it didn’t contain any
      items. [stlaz]
    - Fixed date-time being recognized as date or time during parsing. Added
      better error handling to parsing from ical strings. [stlaz]
    - Added __version__ attribute to init.py. [TomTry]
    - Documentation fixes. [TomTry]
    - Pep 8, UTF 8 headers, dict/list calls to literals. [thet]
* Tue Mar 29 2016 dmueller@suse.com
  - adjust to python-python-dateutil renaming
* Thu Oct 22 2015 mcihar@suse.cz
  - Removed not needed run time dependency on unittest2
* Fri Sep 25 2015 michael@stroeder.com
  - Update to 3.9.1:
    - Fix vPeriod.__repr__. [spacekpe]
    - Improve foldline() performance. This improves the foldline
      performance, especially for large strings like base64-encoded
      inline attachements. In some cases (1MB string) from 7 Minutes
      to less than 20ms for ASCII data and 500ms for non-ASCII data.
      Ref: #163. [emfree]
* Mon Jul 13 2015 toddrme2178@gmail.com
  - Fix building on SLES 11
* Thu Apr 23 2015 mcihar@suse.cz
  - Update to 3.9.0:
    - Creating timezone objects from VTIMEZONE components.
    - Make ``python-dateutil`` a dependency.
    - Made RRULE tolerant of trailing semicolons.
    - Documentation fixes.
  - Use .tar.gz as Source
  - Add missing dependency on pytz, dateutil
  - Run testsuite in %check and adjust build requires
* Wed Nov 05 2014 seiler@b1-systems.de
  update to version 3.8.4 changelog from 3.5
  - 3.8.4 (2014-11-01)
    * Add missing BYWEEKNO to recurrence rules. [russkel]
  - 3.8.3 (2014-08-26)
    * PERCENT property in VTODO renamed to PERCENT-COMPLETE, according to RFC5545. [thomascube]
  - 3.8.2 (2014-07-22)
    * Exclude editor backup files from egg distributions. Fixes #144. [thet]
  - 3.8.1 (2014-07-17)
    * The representation of CaselessDicts in 3.8 changed the name attribute of Components and therefore broke the external API. This has been fixed. [untitaker]
  - 3.8 (2014-07-17)
    * Allow dots in property names (Needed for vCard compatibility). Refs #143. [untitaker]
    * Change class representation for CaselessDict objects to always include the class name or the class' name attribute, if available. Also show subcomponents for Component objects. [thet]
    * Don't use data_encode for CaselessDict class representation but use dict's __repr__ method. [t-8ch]
    * Handle parameters with multiple values, which is needed for vCard 3.0. Refs #142. [t-8ch]
  - 3.7 (2014-06-02)
    * For components with ignore_exceptions set to True, mark unparseable lines as broken instead rising a ValueError. VEVENT components have ignore_exceptions set to True by default. Ref #131. Fixes #104. [jkiang13]
    * Make python-dateutil a soft-dependency. [boltnev]
    * Add optional sorted parameter to Component.to_ical. Setting it to false allows the user to preserve the original property and parameter order. Ref #136. Fixes #133. [untitaker]
    * Fix tests for latest pytz. Don't set tzinfo directly on datetime objects, but use pytz's localize function. Ref #138. [untitaker, thet]
    * Remove incorrect use of __all__. We don't encourage using from package import * imports. Fixes #129. [eric-wieser]
  - 3.6.2 (2014-04-05)
    * Pep8 and cleanup. [lasudry]
  - 3.6.1 (2014-01-13)
    * Open text files referenced by setup.py as utf-8, no matter what the locale settings are set to. Fixes #122. [sochotnicky]
    * Add tox.ini to source tarball, which simplifies testing for in distributions. [sochotnicky]
  - 3.6 (2014-01-06)
    * Python3 (3.3+) + Python 2 (2.6+) support [geier]
    * Made sure to_ical() always returns bytes [geier]
    * Support adding lists to a component property, which value already was a list and remove the Component.set method, which was only used by the add method. [thet]
    * Remove ability to add property parameters via a value's params attribute when adding via cal.add (that was only possible for custom value objects and makes up a strange API), but support a parameter attribute on cal.add's method signature to pass a dictionary with property parameter key/value pairs. Fixes #116. [thet]
    * Backport some of Regebro's changes from his regebro-refactor branch. [thet]
    * Raise explicit error on another malformed content line case. [hajdbo]
    * Correctly parse datetime component property values with timezone information when parsed from ical strings. [untitaker]

Files

/etc/alternatives/icalendar
/usr/bin/icalendar
/usr/bin/icalendar-3.11
/usr/lib/python3.11/site-packages/icalendar
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/INSTALLER
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/LICENSE.rst
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/METADATA
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/RECORD
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/REQUESTED
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/WHEEL
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/entry_points.txt
/usr/lib/python3.11/site-packages/icalendar-5.0.11.dist-info/top_level.txt
/usr/lib/python3.11/site-packages/icalendar/__init__.py
/usr/lib/python3.11/site-packages/icalendar/__pycache__
/usr/lib/python3.11/site-packages/icalendar/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/cal.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/cal.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/caselessdict.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/caselessdict.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/cli.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/cli.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/parser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/parser.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/parser_tools.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/parser_tools.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/prop.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/prop.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/timezone_cache.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/timezone_cache.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/tools.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/tools.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/windows_to_olson.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/__pycache__/windows_to_olson.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/cal.py
/usr/lib/python3.11/site-packages/icalendar/caselessdict.py
/usr/lib/python3.11/site-packages/icalendar/cli.py
/usr/lib/python3.11/site-packages/icalendar/parser.py
/usr/lib/python3.11/site-packages/icalendar/parser_tools.py
/usr/lib/python3.11/site-packages/icalendar/prop.py
/usr/lib/python3.11/site-packages/icalendar/tests
/usr/lib/python3.11/site-packages/icalendar/tests/__init__.py
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/conftest.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/conftest.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_cli_tool.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_cli_tool.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_components_break_on_bad_ics.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_components_break_on_bad_ics.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_encoding.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_encoding.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_equality.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_equality.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_examples.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_examples.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_fixed_issues.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_fixed_issues.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_icalendar.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_icalendar.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_165_missing_event.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_165_missing_event.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_168_parsing_invalid_calendars_no_warning.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_168_parsing_invalid_calendars_no_warning.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_27_period.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_27_period.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_318_skip_default_parameters.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_318_skip_default_parameters.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_322_single_strings_characters_split_into_multiple_categories.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_322_single_strings_characters_split_into_multiple_categories.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_348_exception_parsing_value.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_348_exception_parsing_value.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_500_vboolean_for_parameter.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_500_vboolean_for_parameter.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_557_encode_native_parameters.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_issue_557_encode_native_parameters.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_multiple.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_multiple.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_parsing.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_parsing.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_period.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_period.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_property_params.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_property_params.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_recurrence.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_recurrence.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_time.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_time.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_timezoned.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_timezoned.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_cal.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_cal.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_caselessdict.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_caselessdict.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_parser_tools.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_parser_tools.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_prop.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_prop.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_tools.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_unit_tools.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_with_doctest.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/__pycache__/test_with_doctest.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/calendars
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/america_new_york.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/big_bad_calendar.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/broken_ical.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/calendar_with_unicode.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/created_calendar_with_unicode_fields.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/example.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_104_broken_calendar.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_156_RDATE_with_PERIOD_TZID_khal.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_156_RDATE_with_PERIOD_TZID_khal_2.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_165_missing_event.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_168_expected_output.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_168_input.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_178_component_with_invalid_name_represented.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_178_custom_component_contains_other.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_178_custom_component_inside_other.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_237_fail_to_parse_timezone_with_non_ascii_tzid.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_27_multiple_periods_in_freebusy_multiple_freebusies.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_27_multiple_periods_in_freebusy_one_freebusy.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_322_expected_calendar.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_348_exception_parsing_value.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_466_convert_tzid_with_slash.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_466_respect_unique_timezone.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_526_calendar_with_different_events.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_526_calendar_with_event_subset.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_526_calendar_with_events.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/issue_526_calendar_with_shuffeled_events.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/multiple_calendar_components.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/pacific_fiji.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/period_with_timezone.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/pr_480_summary_with_colon.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/small_bad_calendar.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/time.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/timezone_rdate.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/timezone_same_start.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/timezone_same_start_and_offset.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/timezoned.ics
/usr/lib/python3.11/site-packages/icalendar/tests/calendars/x_location.ics
/usr/lib/python3.11/site-packages/icalendar/tests/conftest.py
/usr/lib/python3.11/site-packages/icalendar/tests/events
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_escaped_character1.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_escaped_character2.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_escaped_character3.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_escaped_character4.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_escaped_characters.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_recurrence.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_recurrence_exdates_on_different_lines.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_rsvp.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_unicode_fields.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/event_with_unicode_organizer.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_100_transformed_doctests_into_unittests.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_101_icalendar_chokes_on_umlauts_in_organizer.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_104_mark_events_broken.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_112_missing_tzinfo_on_exdate.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_156_RDATE_with_PERIOD.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_156_RDATE_with_PERIOD_list.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_157_removes_trailing_semicolon.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_184_broken_representation_of_period.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_464_invalid_rdate.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_53_description_parsed_properly.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_64_event_with_ascii_summary.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_64_event_with_non_ascii_summary.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_70_rrule_causes_attribute_error.ics
/usr/lib/python3.11/site-packages/icalendar/tests/events/issue_82_expected_output.ics
/usr/lib/python3.11/site-packages/icalendar/tests/hypothesis
/usr/lib/python3.11/site-packages/icalendar/tests/hypothesis/__pycache__
/usr/lib/python3.11/site-packages/icalendar/tests/hypothesis/__pycache__/test_fuzzing.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/hypothesis/__pycache__/test_fuzzing.cpython-311.pyc
/usr/lib/python3.11/site-packages/icalendar/tests/hypothesis/test_fuzzing.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_cli_tool.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_components_break_on_bad_ics.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_create_release.sh
/usr/lib/python3.11/site-packages/icalendar/tests/test_encoding.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_equality.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_examples.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_fixed_issues.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_icalendar.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_165_missing_event.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_168_parsing_invalid_calendars_no_warning.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_27_period.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_318_skip_default_parameters.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_322_single_strings_characters_split_into_multiple_categories.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_348_exception_parsing_value.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_500_vboolean_for_parameter.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_issue_557_encode_native_parameters.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_multiple.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_parsing.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_period.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_property_params.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_recurrence.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_time.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_timezoned.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_unit_cal.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_unit_caselessdict.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_unit_parser_tools.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_unit_prop.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_unit_tools.py
/usr/lib/python3.11/site-packages/icalendar/tests/test_with_doctest.py
/usr/lib/python3.11/site-packages/icalendar/tests/timezones
/usr/lib/python3.11/site-packages/icalendar/tests/timezones/issue_237_brazilia_standard.ics
/usr/lib/python3.11/site-packages/icalendar/tests/timezones/issue_53_tzid_parsed_properly.ics
/usr/lib/python3.11/site-packages/icalendar/tests/timezones/issue_55_parse_error_on_utc_offset_with_seconds.ics
/usr/lib/python3.11/site-packages/icalendar/timezone_cache.py
/usr/lib/python3.11/site-packages/icalendar/tools.py
/usr/lib/python3.11/site-packages/icalendar/windows_to_olson.py
/usr/share/doc/packages/python311-icalendar
/usr/share/doc/packages/python311-icalendar/CHANGES.rst
/usr/share/doc/packages/python311-icalendar/README.rst
/usr/share/licenses/python311-icalendar
/usr/share/licenses/python311-icalendar/LICENSE.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri May 3 23:33:27 2024