From 0fc01bc2fb9314548b6b26c811ae54cac5b079b3 Mon Sep 17 00:00:00 2001 From: Yusur Princeps Date: Fri, 15 Aug 2025 20:41:07 +0200 Subject: [PATCH] add exports --- src/suou/__init__.py | 4 ++-- src/suou/functools.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/suou/__init__.py b/src/suou/__init__.py index d11ad6f..248c149 100644 --- a/src/suou/__init__.py +++ b/src/suou/__init__.py @@ -23,7 +23,7 @@ from .bits import count_ones, mask_shift, split_bits, join_bits, mod_ceil, mod_f from .calendar import want_datetime, want_isodate, want_timestamp, age_and_days from .configparse import MissingConfigError, MissingConfigWarning, ConfigOptions, ConfigParserConfigSource, ConfigSource, DictConfigSource, ConfigValue, EnvConfigSource from .collections import TimedDict -from .functools import deprecated, not_implemented, timed_cache, none_pass +from .functools import deprecated, not_implemented, timed_cache, none_pass, alru_cache from .classtools import Wanted, Incomplete from .itertools import makelist, kwargs_prefix, ltuple, rtuple, additem, addattr from .i18n import I18n, JsonI18n, TomlI18n @@ -42,7 +42,7 @@ __all__ = ( 'MissingConfigError', 'MissingConfigWarning', 'PrefixIdentifier', 'Siq', 'SiqCache', 'SiqGen', 'SiqType', 'Snowflake', 'SnowflakeGen', 'StringCase', 'TimedDict', 'TomlI18n', 'Wanted', 'WantsContentType', - 'addattr', 'additem', 'age_and_days', 'b2048decode', 'b2048encode', + 'addattr', 'additem', 'age_and_days', 'alru_cache', 'b2048decode', 'b2048encode', 'b32ldecode', 'b32lencode', 'b64encode', 'b64decode', 'cb32encode', 'cb32decode', 'count_ones', 'deprecated', 'ilex', 'join_bits', 'jsonencode', 'kwargs_prefix', 'lex', 'ltuple', 'makelist', 'mask_shift', diff --git a/src/suou/functools.py b/src/suou/functools.py index 9cc264a..bad69bc 100644 --- a/src/suou/functools.py +++ b/src/suou/functools.py @@ -314,5 +314,5 @@ def none_pass(func: Callable, *args, **kwargs) -> Callable: return wrapper __all__ = ( - 'deprecated', 'not_implemented', 'timed_cache', 'none_pass' + 'deprecated', 'not_implemented', 'timed_cache', 'none_pass', 'alru_cache' ) \ No newline at end of file