From d6d80a17444c90259c5bfdacb84c61e6bfece655 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 5 Jan 2023 11:38:41 +0100 Subject: Merging upstream version 3.0.0~a1. Signed-off-by: Daniel Baumann --- pendulum/tz/zoneinfo/__init__.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 pendulum/tz/zoneinfo/__init__.py (limited to 'pendulum/tz/zoneinfo/__init__.py') diff --git a/pendulum/tz/zoneinfo/__init__.py b/pendulum/tz/zoneinfo/__init__.py deleted file mode 100644 index 890351a..0000000 --- a/pendulum/tz/zoneinfo/__init__.py +++ /dev/null @@ -1,16 +0,0 @@ -from .reader import Reader -from .timezone import Timezone - - -def read(name, extend=True): # type: (str, bool) -> Timezone - """ - Read the zoneinfo structure for a given timezone name. - """ - return Reader(extend=extend).read_for(name) - - -def read_file(path, extend=True): # type: (str, bool) -> Timezone - """ - Read the zoneinfo structure for a given path. - """ - return Reader(extend=extend).read(path) -- cgit v1.2.3