From a1828c6b25d4272c90c1258e804fe928dc55b742 Mon Sep 17 00:00:00 2001 From: c0d33ngr <106184818+c0d33ngr@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:02:20 +0100 Subject: [PATCH 1/5] Add __all__ attributes to icalendar modules --- src/icalendar/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/icalendar/__init__.py b/src/icalendar/__init__.py index 138cf7a6..848d81de 100644 --- a/src/icalendar/__init__.py +++ b/src/icalendar/__init__.py @@ -44,3 +44,9 @@ # Switching the timezone provider from icalendar.timezone import use_pytz, use_zoneinfo + + +__all__ = ['Calendar', 'Event', 'Todo', 'Journal', 'Timezone', 'TimezoneStandard', 'TimezoneDaylight', 'FreeBusy', 'Alarm', + 'ComponentFactory', 'vBinary', 'vBoolean', 'vCalAddress', 'vDatetime', 'vDate', 'vDDDTypes', 'vDuration', + 'vFloat, 'vInt', 'vPeriod','vWeekday', 'vFrequency', 'vRecur', 'vText', 'vTime', 'vUri', 'vGeo', 'vUTCOffset', + 'vTypesFactory', 'Parameters', 'q_split', 'q_join', 'use_pytz', 'use_zoneinfo'] From 66cfc03e693c8c9f2b1b5cc4ed9fb24e584301f8 Mon Sep 17 00:00:00 2001 From: c0d33ngr <106184818+c0d33ngr@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:07:33 +0100 Subject: [PATCH 2/5] docs: fix syntax error --- src/icalendar/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/icalendar/__init__.py b/src/icalendar/__init__.py index 848d81de..61d6e6c9 100644 --- a/src/icalendar/__init__.py +++ b/src/icalendar/__init__.py @@ -48,5 +48,5 @@ __all__ = ['Calendar', 'Event', 'Todo', 'Journal', 'Timezone', 'TimezoneStandard', 'TimezoneDaylight', 'FreeBusy', 'Alarm', 'ComponentFactory', 'vBinary', 'vBoolean', 'vCalAddress', 'vDatetime', 'vDate', 'vDDDTypes', 'vDuration', - 'vFloat, 'vInt', 'vPeriod','vWeekday', 'vFrequency', 'vRecur', 'vText', 'vTime', 'vUri', 'vGeo', 'vUTCOffset', + 'vFloat', 'vInt', 'vPeriod','vWeekday', 'vFrequency', 'vRecur', 'vText', 'vTime', 'vUri', 'vGeo', 'vUTCOffset', 'vTypesFactory', 'Parameters', 'q_split', 'q_join', 'use_pytz', 'use_zoneinfo'] From 1c8e4cc55a2222e34071c7ad9facba61aae65ad4 Mon Sep 17 00:00:00 2001 From: c0d33ngr <106184818+c0d33ngr@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:22:45 +0100 Subject: [PATCH 3/5] docs: update credits.rst to include my name --- docs/credits.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/credits.rst b/docs/credits.rst index 5d17ec44..7fce0509 100644 --- a/docs/credits.rst +++ b/docs/credits.rst @@ -74,6 +74,7 @@ icalendar contributors - Felix Stupp - Bastian Wegge - `Steve Piercy `_ +- Jeffrey Whewhetu Find out who contributed:: From eb4e598835e00833060794326a57f9fab0d063ea Mon Sep 17 00:00:00 2001 From: c0d33ngr <106184818+c0d33ngr@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:31:30 +0100 Subject: [PATCH 4/5] docs: Update CHANGES.rst to include improved namespace management for icalendar modules --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index 906843fd..da17da7e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -11,6 +11,7 @@ Minor changes: - Rename ``master`` branch to ``main``, see `Issue `_ - Added missing public classes and functions to API documentation. +- Improved namespace management in the icalendar directory. - Add Python version badge and badge for test coverage - Remove 4.x badge - Update list of ``tox`` environments From 318af908215736f7894c8cce39481b7bb8f785f8 Mon Sep 17 00:00:00 2001 From: c0d33ngr <106184818+c0d33ngr@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:33:21 +0100 Subject: [PATCH 5/5] docs: Update CHANGES.rst to fix format issue --- CHANGES.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index da17da7e..e1c5d9f1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -11,7 +11,7 @@ Minor changes: - Rename ``master`` branch to ``main``, see `Issue `_ - Added missing public classes and functions to API documentation. -- Improved namespace management in the icalendar directory. +- Improved namespace management in the ``icalendar`` directory. - Add Python version badge and badge for test coverage - Remove 4.x badge - Update list of ``tox`` environments