massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / dateparser / dateparser / utils / __init__.pyi
1 from collections import OrderedDict
2 from typing import Any, Mapping
3
4 def strip_braces(date_string: str) -> str: ...
5 def normalize_unicode(string: str, form: str = ...) -> str: ...
6 def combine_dicts(
7     primary_dict: Mapping[Any, Any], supplementary_dict: Mapping[Any, Any]
8 ) -> OrderedDict[str, str | list[Any]]: ...
9 def find_date_separator(format) -> Any: ...
10 def localize_timezone(date_time, tz_string): ...
11 def apply_tzdatabase_timezone(date_time, pytz_string): ...
12 def apply_dateparser_timezone(utc_datetime, offset_or_timezone_abb): ...
13 def apply_timezone(date_time, tz_string): ...
14 def apply_timezone_from_settings(date_obj, settings): ...
15 def get_last_day_of_month(year, month): ...
16 def get_previous_leap_year(year): ...
17 def get_next_leap_year(year): ...
18 def set_correct_day_from_settings(date_obj, settings, current_day: Any | None = ...): ...
19 def registry(cls): ...
20 def get_logger() -> Any: ...
21 def setup_logging() -> None: ...